Differences between revisions 1 and 2
Revision 1 as of 2018-08-18 23:51:17
Size: 318
Editor: PieterSmit
Comment:
Revision 2 as of 2022-01-05 22:45:00
Size: 355
Editor: PieterSmit
Comment:
Deletions are marked like this. Additions are marked like this.
Line 9: Line 9:
$ python3 manage.py createsuperuser

Django

  1. Create a project and the standard files + directories

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

    $ 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)