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