#format wiki
#language en
= Django =
 1. Create a project and the standard files + directories {{{
django-admin startproject myproject 
   }}}
 1. update all db changes, schema updates {{{
$ python3 manage.py makemigrations
$ python3 manage.py migrate
$ python3 manage.py createsuperuser
    }}}
 1. run django webserver with {{{
$ python3 manage.py runserver
   }}} 


...