django-admin

Added the django-admin commands
This commit is contained in:
shrivatsahosabettu 2018-02-06 14:45:44 +05:30 committed by GitHub
parent 0853046c3c
commit 0422661584
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 17 additions and 0 deletions

View File

@ -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 <ProjectName> # To create Project Directory structure
# https://docs.djangoproject.com/en/2.0/ref/django-admin/#startproject
django-admin startapp <Appname> # 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