Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 475 Bytes

README.md

File metadata and controls

35 lines (26 loc) · 475 Bytes

Create the DB with:

python manage.py migrate

Then, run the server:

python manage.py runserver

Create app

python manage.py startapp <APP_NAME>

Update models

python manage.py makemigrations <APP_NAME>
python manage.py migrate <APP_NAME>

Create super user:

python manage.py createsuperuser

Statics:

python manage.py collectstatic