django new application code example
Example 1: django create app
python manage.py startapp # name of the app
Example 2: django runserver
python manage.py runserver
Example 3: create new django app
python manage.py startapp app_name
Example 4: django start app
$ python manage.py startapp polls