django
Installation
SKILL.md
When to use this skill
Use this skill whenever the user wants to:
- Create Django web applications with models, views, and templates
- Configure projects, apps, migrations, and deployment
- Build REST APIs with Django REST Framework
- Set up Django admin, forms, and authentication
How to use this skill
Workflow
- Create project — scaffold with
django-admin startproject - Add apps — create feature apps with
python manage.py startapp - Define models — write models, create and run migrations
- Build views and URLs — implement views, wire URL patterns
- Test and deploy — run tests, configure production settings