This project is a reference implementation for a production-ready Django application with common use cases baked in. It is the base application that Simple CTO uses for its projects, and we hope that it can be helpful to you. It is quite opinionated as to its patterns, conventions, and library choices.
This is not prescriptive. That is to say that there are many ways to do build applications, and this is ours. You are welcome to fork, copy, and imitate. We stand on the shoulders of giants, and you are welcome to as well.
You are impatient, I get it. Here is the quick start guide.
You will see a number of use cases covered:
- Async tasks (sending email, health-check PUSH)
- Viable alternatives to Celery
- Sending e-mail (with SMTP)
- User Login, Logout, Registration, password reset (email, social)
- Admin interface customization
- Health-check (HEAD/GET used by Load Balancers)
- Simple template tags (quick image thumbnails)
- Serving static assets from Django vs. needing nginx/apache
- Storing assets in S3 (optional)
- Local development using PyCharm and/or Docker
- Command line automation with
Makefile
- Deployment with Docker and Docker Compose
- Deployment to Heroku, Dokku, etc using
Procfile
- Opinionated linting and formatting with ruff
- Configuration and worker management inside the admin interface
- Use as little abstraction as possible. It should be easy to trace the code paths and see what is going on. Therefore, we will not be using too many advanced patterns, domains, and other things that create indirection.
- 12-factor ready
- Simplicity, with a path forward for scaling the parts you need.
- Single developer friendly
- Single machine friendly
- Optimize for developer speed
- Docker
- Python 3.12 or later
- SMTP Credentials
- S3 Credentials (optional)
Below is the text used for adding a worker that sends SMS messages.
These workers are actually Django management commands that are run in a loop.
simple_async_worker:
build: .
command: ./manage.py simple_async_worker
restart: always
env_file: env.sample
PyCharm's integration with the debugger and Docker leaves some things to be desired. This has changed how I work on the desktop. In short, I don't use docker for the django part of development. I use the local development environment provided by MacOS.
- PyCharm (paid but community version is good, too)
- Postgres installed via homebrew or docker
- Mailpit for SMTP testing *Installed via Homebrew or docker).
- s3proxy for S3 testing (installed via Homebrew or docker)
- Virtual environment
Thankfully there are many other Django template projects that you can use. We all take inspiration from each other and build upon the work of others. If this one is not to your taste, then there are others to consider:
NOTE: These are not endorsements of these projects. Just examples of other ways to get started with Django.
Contributions are welcome. Simply fork, submit a pull request, and explain what you would like to fix/improve.
This code is under the MIT License