django app 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: how to start a django project

django-admin startproject project_name

Example 3: django create app

python manage.py startapp # name of the app

Example 4: start new app in django

$ python manage.py startapp app_name

Example 5: create new django project

django-admin startproject mysite

Example 6: django app

How to create Django app
--------------------------
Project
> pip install Django
> django-admin startproject config .
> python manage.py runserver
http://127.0.0.1:8000/

App
> python manage.py startapp adminapp