logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

Django-admin - Control Django Projects | Online Free DevTools by Hexmos

Control Django projects and apps with django-admin. Quickly create, manage, and debug your Django applications from the command line. Free online tool, no registration required.

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}}

  • Check the current version of Django:

django-admin --version

  • Display help for a specific command:

django-admin help {{command}}

See Also