From 0209f9021c56bc98577ba06dd213d7e0ae96fd28 Mon Sep 17 00:00:00 2001 From: "RongSon (Sam Ho)" Date: Wed, 27 May 2020 23:04:37 +0800 Subject: [PATCH] django-admin: add page (#4066) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Zlatan Vasović Co-authored-by: Lucas Gabriel Schneider --- pages/common/django-admin.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 pages/common/django-admin.md diff --git a/pages/common/django-admin.md b/pages/common/django-admin.md new file mode 100644 index 0000000000..761b754c0b --- /dev/null +++ b/pages/common/django-admin.md @@ -0,0 +1,20 @@ +# django-admin + +> Django’s utility for administrative tasks. +> More information: . + +- Create a new django project: + +`django-admin startproject {{project_name}}` + +- Create a new app for the current project: + +`django-admin startapp {{app_name}}` + +- Check the current version of Django: + +`django-admin --version` + +- Display more information for the given command: + +`django-admin help {{command}}`