Skip to content

Latest commit

 

History

History
25 lines (20 loc) · 454 Bytes

README.md

File metadata and controls

25 lines (20 loc) · 454 Bytes

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