Skip to content

Django Guide#

Quick Start#

pip install django
django-admin startproject myproject
cd myproject
python manage.py migrate
python manage.py runserver

Browse Topics#

  • Getting Started - Project setup and configuration
  • Core - Models, Views, URLs, and Templates
  • ORM - Database queries and migrations
  • Forms & Admin - Forms, ModelForms, and Admin customization
  • Advanced - Signals, Middleware, Celery, and Channels