Django

  1. Create a project and the standard files + directories

    django-admin startproject myproject 
  2. update all db changes, schema updates

    $ python3 manage.py makemigrations
    $ python3 manage.py migrate
    $ python3 manage.py createsuperuser
  3. run django webserver with

    $ python3 manage.py runserver

...

django (last edited 2022-01-05 22:50:49 by PieterSmit)