django manage.py code example

Example 1: start django

pip install django # Install Django Packages
django-admin startproject project_name # Create a Project
cd project_name
python manage.py makemigrations # Create new migrations
python manage.py migrate # Apply Migrations
python manage.py createsuperuser # Create User for admin
python manage.py runserver # Start Server

python manage.py startapp sub_module # Create a sub app

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 create app

python manage.py startapp # name of the app

Example 4: django create app command

python manage.py startapp app_name

Example 5: django runserver

python manage.py runserver

Example 6: manage.py

It is your tool for executing many Django-specific tasks such as
 starting a new app within a project, running the development server, 
 running your tests etc.
 Example: python manage.py runserver