startproject command in django code example

Example 1: how to start a django project in terminal

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: run django server

python3 manage.py runserver
or
python manage.py runserver

Example 4: start django project

django-admin startproject <//name of project\\>

Example 5: python start project cmd

$ python manage.py startapp myapp