django doc code example

Example 1: quick start django

pip install Django
django-admin startproject mysite
cd mysite
python manage.py runserver

Example 2: 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 3: django

# Start a Project.
django-admin startproject <project name>

# cd into <project name>

# Create the application
python manage.py startapp <app name>

# Start using the files.

Example 4: django

$ python -m django --version

Example 5: django documentation

...\> py manage.py runserver

Example 6: django

Read the docs, its the best you will ever get.