diff --git a/backend/django.py b/backend/django.py index 3676b5c..464a1a1 100644 --- a/backend/django.py +++ b/backend/django.py @@ -36,3 +36,20 @@ # Use underscores in URL pattern names rather than dashes. + + +# ***************************************************************************** +# Django to begin django-admin +# ***************************************************************************** +# Note: When working with single Django Project its easy to use manage.py instead of django-admin +# These two options can be intechangeble +django-admin startproject # To create Project Directory structure + # https://docs.djangoproject.com/en/2.0/ref/django-admin/#startproject +django-admin startapp # To create Django Application Name + # https://docs.djangoproject.com/en/2.0/ref/django-admin/#startapp +django-admin migrate # To Synchronize the database state with your current state project models and migrations + # https://docs.djangoproject.com/en/2.0/ref/django-admin/#migrate +django-admin makemigrations # To create new migrations to the database based on the changes detected in the models + # https://docs.djangoproject.com/en/2.0/ref/django-admin/#makemigrations +django-admin runserver # To start the development webserver at 127.0.0.1 with the port 8000 + # https://docs.djangoproject.com/en/2.0/ref/django-admin/#runserver