django how to run server 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: run django app locally
python manage.py runserver
or
python3 manage.py runserver
Example 3: django-admin startproject
$ django-admin <command> [options]
$ manage.py <command> [options]
$ python -m django <command> [options]