HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

django-admin — Django's utility for administrative tasks. More information: <https://docs.djangoproject.com/en/stab

Submitted by: @import:tldr-pages··
0
Viewed 0 times
administrativecommanddjango-adminclifortasksutilitydjango

Problem

How to use the django-admin command: Django's utility for administrative tasks. More information: <https://docs.djangoproject.com/en/stable/ref/django-admin/>.

Solution

django-admin — Django's utility for administrative tasks. More information: <https://docs.djangoproject.com/en/stable/ref/django-admin/>.

Create a new Django project:
django-admin startproject {{project_name}}


Create a new app for the current project:
django-admin startapp {{app_name}}


Display help for a specific command:
django-admin help {{command}}


Display version:
django-admin --version

Code Snippets

Create a new Django project

django-admin startproject {{project_name}}

Create a new app for the current project

django-admin startapp {{app_name}}

Display help for a specific command

django-admin help {{command}}

Display version

django-admin --version

Context

tldr-pages: common/django-admin

Revisions (0)

No revisions yet.