Installation
Getting Django Cheroot running takes two steps: install the package, then register the app.
1. Install the package
Section titled “1. Install the package”pip install django-cherootThis pulls in Cheroot automatically. If you use a requirements.txt, add:
django-cheroot2. Register the app
Section titled “2. Register the app”Add django_cheroot to INSTALLED_APPS in your project’s settings.py:
INSTALLED_APPS = [ # ... your other apps "django_cheroot",]Registering the app is what makes the cheroot management command discoverable. With it in place, the command shows up alongside Django’s built-in commands:
python manage.py cheroot --helpRequirements
Section titled “Requirements”| Supported | |
|---|---|
| Python | 3.8 or newer |
| Django | 4.2, 5.x, or 6.0 |
| Cheroot | 10 or newer (installed automatically) |
Next steps
Section titled “Next steps”- Usage — start the server and pass arguments.
- Configuration — the full option reference.