🍪 Cookiecutter template to build and deploy fastapi backends..batteries included.
Install the latest Cookiecutter if you haven't installed it yet (this requires Cookiecutter 1.4.0 or higher):
pip install cookiecutter
Generate project:
cookiecutter https://github.com/nickatnight/cookiecutter-fastapi-backend.git
- 🐳 Docker & Docker Compose integration and optimization for local development. Fast bundles using build stages and Poetry
- 💻 Production ready Python web server using FastAPI
- ✏️ SQLModel Library for interacting with SQL databases from Python code, with Python objects. It is designed to be intuitive, easy to use, highly compatible, and robust
- 🚈 Alembic Lightweight database migration tool for usage with the SQLAlchemy Database Toolkit for Python
- 🌐 NGINX High Performance Load Balancer, Web Server, & Reverse Proxy
- 🔒 Let's Encrypt A free, automated, and open certificate authority (CA), provided by the Internet Security Research Group (ISRG)...with automatic cert renewal
- 💾 postgresql Powerful open source object-relational database
- 🏪 Redis In-memory data structure store, used as a distributed, in-memory key–value database, cache and message broker
- 🌱 Celery Asynchronous task or job queue
- 📥 Continuous Integration/Deployment Modular GitHub Actions to lint, build, test, and deploy to DigitalOcean cloud
- ↩️ pre-commit Git hooks to maintain code quality using modern tooling (ruff, black, isort)
The generator (cookiecutter) will ask you for some data, you might want to have at hand before generating the project.
The input variables, with their default values (some auto generated) are:
project_name
: The name of the projectproject_slug
: The development friendly name of the project. By default, based on the project nameproject_slug_db
: The database friendly name of the project. By default, based on the project nameauthor_email
: The authors email...used for certbotpy_version
: The version of Python to install. Options are3.9
,3.10
, and3.11
db_container_name
: The name of the database container. Defaultdb
backend_container_name
: The name of the backend container. Defaultbackend
use_celery
: Whether to use Celery/Beat for asynchronous/scheduled tasks.nginx_container_name
: The name of the nginx web server container. Defaultnginx
doctl_version
: The version name of DigitalOcean Command Line Interface to use. Default1.92.0
github_username
: The username of the GitHub user. Used for badge display in generated projectREADME.md
deployments
: Includedocker-compose
files needed for deployment step in GitHub Action. Options arey
orn
After using this generator, your new project (the directory created) will contain an extensive README.md
with instructions for development, deployment, etc. You can view it here
This project uses Poetry to manage dev environment. Once installed:
- install packages with
poetry install
- run tests with
poetry run pytest tests
Pre-commit:
- Install pre-commit hooks with
pre-commit install
- Run hooks with
pre-commit run --all-files
- tiangolo for the FastAPI project
- jonra for the Alembic/SQLModel knowledge
- nemd / ironhalik for the inspiration and Docker hacks
- cookiecutter-django for cookiecutter testing patterns