Set up Postgres for Django

Info Connect to postgres
sudo -i -u postgres
psql
sudo -u postgres psql
Usefull command once inside postgres Commands
CREATE DATABASE mydb;
CREATE USER myuser WITH PASSWORD 'mypass';
ALTER ROLE myuser SET client_encoding TO 'utf8';
ALTER ROLE myuser SET timezone TO 'UTC';
ALTER ROLE myuser SET default_transaction_isolation TO 'read committed';

Let us give all privileges to our user:

GRANT ALL PRIVILEGES ON DATABASE mydb TO myuser;

Enable user creating db:

ALTER USER myuser CREATEDB;

🌐 Change language