From d309cb8546d7b9df9f4e9a7781097d59adb93908 Mon Sep 17 00:00:00 2001 From: Manoj Tyagi <38884133+thewolfcommander@users.noreply.github.com> Date: Fri, 11 Oct 2019 00:17:27 +0530 Subject: [PATCH] Reordered the commands alphabetically --- backend/django.py | 31 ++++++++++++------------------- 1 file changed, 12 insertions(+), 19 deletions(-) diff --git a/backend/django.py b/backend/django.py index dd50a37..12a33ee 100644 --- a/backend/django.py +++ b/backend/django.py @@ -43,15 +43,11 @@ # ***************************************************************************** -django-admin startproject # create a new project directory structure -django-admin startapp # create a new django application with the specified name -django-admin migrate # synchronize the database state with your current state project models and migrations -django-admin makemigrations # create new migrations to the database based on the changes detected in the models -django-admin runserver # start the development webserver at 127.0.0.1 with the port 8000 -django-admin help # display usage information and a list of the commands provided by each application -django-admin version # display the current django version - django-admin check # Checks the entire django project for potential problems +django-admin changepassword # Allows changing a user’s password. It prompts you to enter a new password twice for the given user. +django-admin clearsessions # Can be run as a cron job or directly to clean out expired sessions. +django-admin collectstatic # Helps to collect all the static files in the one mentioned director +django-admin createsuperuser # Creates a superuser account (a user who has all permissions). django-admin compilemessages # Compiles .po files to .mo files for use with builtin gettext support django-admin createcachetable # Creates the tables needed to use the SQL cache backend. django-admin dbshell # Runs the command-line client for specified database, or the default database if none is provided. @@ -61,6 +57,11 @@ django-admin flush # Removes ALL DATA from the database, i django-admin inspectdb # Introspects the database tables in the given database and outputs a Django model module. django-admin loaddata # Installs the named fixture(s) in the database. django-admin makemessages # Runs over the entire source tree of the current directory and pulls out all strings marked for translation. It creates (or updates) a message file in the conf/locale (in the django tree) or locale (for projects and applications) directory. You must run this command with one of either the --locale, --exclude, or --all options. +django-admin help # display usage information and a list of the commands provided by each application +django-admin makemigrations # create new migrations to the database based on the changes detected in the models +django-admin migrate # synchronize the database state with your current state project models and migrations +django-admin remove_stale_contenttypes # Deletes stale content types (from deleted models) in your database.y. +django-admin runserver # start the development webserver at 127.0.0.1 with the port 8000 django-admin sendtestemail # Sends a test email to the email addresses specified as arguments. django-admin shell # Runs a Python interactive interpreter. Tries to use IPython or bpython, if one of them is available. Any standard input is executed as code. django-admin showmigrations # Shows all available migrations for the current project. @@ -68,16 +69,8 @@ django-admin sqlflush # Returns a list of the SQL statements django-admin sqlmigrate # Prints the SQL statements for the named migration. django-admin sqlsequencereset # Prints the SQL statements for resetting sequences for the given app name(s). django-admin squashmigrations # Squashes an existing set of migrations (from first until specified) into a single new one. +django-admin startapp # create a new django application with the specified name +django-admin startproject # create a new project directory structure django-admin testserver # Runs a development server with data from the given fixture(s). +django-admin version # display the current django version - - -################################################################################### -# App related commands ####################################################### -################################################################################### - -django-admin changepassword # Allows changing a user’s password. It prompts you to enter a new password twice for the given user. -django-admin createsuperuser # Creates a superuser account (a user who has all permissions). -django-admin remove_stale_contenttypes # Deletes stale content types (from deleted models) in your database. -django-admin clearsessions # Can be run as a cron job or directly to clean out expired sessions. -django-admin collectstatic # Helps to collect all the static files in the one mentioned directory.