django projectg code example
Example 1: starting server in django
# to start a django server cd to dir with manage.py file and type following
python manage.py runserver
Example 2: django project
django-admin startproject project_name
# to start a django server cd to dir with manage.py file and type following
python manage.py runserver
django-admin startproject project_name