djprod provides a CLI for creating Django projects with a clean structure, ready for real-world deployments. It includes preconfigured settings, static directories, and environment support.
- CLI to generate Django apps and projects
- Pre-separated settings:
base,local,production .envsupport viadjango-environ- PostgreSQL, Sentry, S3 configuration ready
- Includes basic templates and static structure
pip install djproddjprod new myproject
cd myprojectRename env.example to .env:
mv env.example .envRun the project using uv:
uv run manage.py runserver