snippetbashTip
django-admin — Django's utility for administrative tasks. More information: <https://docs.djangoproject.com/en/stab
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 --versionCode 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 --versionContext
tldr-pages: common/django-admin
Revisions (0)
No revisions yet.