create django project command line code example
Example 1: start new app in django
$ python manage.py startapp app_name
Example 2: how to start a django project in terminal
django-admin startproject project_name
Example 3: run django app
$ python manage.py runserver