How to install Postgres 13 in Linux Mint 20.2
I write open source software, check my Github!
Ping me for collabs
Search for a command to run...
I write open source software, check my Github!
Ping me for collabs
No comments yet. Be the first to comment.
AppSignal deploy markers are a way to keep track of what git commit the bug happened, or when the slowdown started appearing in your app. https://docs.appsignal.com/application/markers/deploy-markers.html As long as you have an APP_REVISION environm...
Hey there, we're going to walk through deploying a Phoenix app to a DigitalOcean droplet, manually - no tools no nothing. Just straight up BASH! But don't worry, I've done the hard work so you don't have to. It occurred to me this week after seeing s...
It's generally a good idea to use binary ids / UUIds for the primary keys in your database. Here's how to easily do it in Rails 7, using Postgres! Configure your generators to use UUID for keys. Create a file in config/initializers/generators.rb Rail...
It's been really hard to figure this out and I had to cobble together many sources to get it working. Enjoy! We're going to build a direct image upload to Cloudflare B2 from the browser. That way the file doesn't travel to your servers and slow them...

Uploads files from your browser directly to your bucket.

Hey gang - here's how you can easily install Postgres 13 on your shiny new Linux Mint 20 computer.
sudo sh -c 'echo "deb http://apt.postgresql.org/pub/repos/apt/ focal-pgdg main" > \
/etc/apt/sources.list.d/postgresql.list'
wget --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | sudo apt-key add -
sudo apt update
sudo apt upgrade
sudo apt-get install postgresql-13 postgresql-client-13
sudo systemctl status postgresql
psql --version
psql (PostgreSQL) 13.5 (Ubuntu 13.5-1.pgdg20.04+1)
You're done!