Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/simplecto/django-reference-implementation

A highly opinionated, production-ready, 12-factor boilerplate template for Django Projects.
https://github.com/simplecto/django-reference-implementation

12-factor boilerplate boilerplate-template django docker postgresql reference-implementation s3

Last synced: 7 days ago
JSON representation

A highly opinionated, production-ready, 12-factor boilerplate template for Django Projects.

Awesome Lists containing this project

README

        

# Project Purpose
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.

---

# Getting Started

You are impatient, I get it. Here is the [quick start guide](docs/getting_started.md).

---

# Use cases covered
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

---

# Project Principles

* 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](https://12factor.net) ready
* Simplicity, with a path forward for scaling the parts you need.
* Single developer friendly
* Single machine friendly
* Optimize for developer speed

## Requirements

* Docker
* Python 3.12 or later
* SMTP Credentials
* S3 Credentials (optional)

---

# Customizing the docker-compose.yml

## Adding more workers

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
```

---

# Developing locally
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.

## My Preferred developer stack

* [PyCharm](https://jetbrains.com/pycharm/) (paid but community version is good, too)
* [Postgres](https://postgresql.org) installed via homebrew or docker
* [Mailpit](https://mailpit.axllent.org/) for SMTP testing *Installed via
Homebrew or docker).
* [s3proxy](https://github.com/andrewgaul/s3proxy) for S3 testing
(installed via Homebrew or docker)
* Virtual environment

---

# Other Django Template Projects
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:

## Free / OpenSource
* [cookiecutter-django](https://github.com/cookiecutter/cookiecutter-django)
* [django-superapp](https://github.com/django-superapp/django-superapp)
* [SaaS Boilerplate](https://github.com/apptension/saas-boilerplate)
* [Django Ship](https://www.djangoship.com)
* [Djast](https://djast.dev/)

## Paid
* [SaaS Pegasus](https://www.saaspegasus.com/)
* [SlimSaaS](https://slimsaas.com/)
* [Sneat](https://themeselection.com/item/sneat-dashboard-pro-django/)

*NOTE: These are not endorsements of these projects. Just examples of other
ways to get started with Django.*

---

# Contributing

Contributions are welcome. Simply fork, submit a pull request, and explain
what you would like to fix/improve.

---

# License

This code is under the MIT License