1st django project code example
Example 1: how to start a django project
django-admin startproject project_name
Example 2: starting server in django
# to start a django server cd to dir with manage.py file and type following
python manage.py runserver
Example 3: django doc poll app
$ python manage.py runserver
Linux: python3 manage.py runserver