pipenv install
postgres:
postgres=# create database aduren;
CREATE DATABASE
postgres=# create role aduren;
CREATE ROLE
postgres=# alter database aduren owner to aduren ;
ALTER DATABASE
postgres=# grant ALL on DATABASE aduren to aduren ;
GRANT
postgres=# alter role aduren with login ;
ALTER ROLE
postgres=# alter role aduren with encrypted password ********;
django
python manage.py migrate
python manage.py createsuperuser