Skip to content

Latest commit

 

History

History
26 lines (21 loc) · 354 Bytes

commands.md

File metadata and controls

26 lines (21 loc) · 354 Bytes

Django commands

Install Django

pip install django

Create a new Django project

django-admin startproject config .

Run the Django server

python manage.py runserver

Save changes to the Database

python manage.py migrate

Create superuser

python manage.py createsuperuser