A powerful, scalable template to kickstart your backend projects. Includes FastAPI with Docker integration and JWT authentication for quick development of robust and secure APIs.Inspired by Radoslav Georgiev's Django Structure for Scale lecture and my own personal experience, this template offers a structured approach to building scalable web applications.
.vscode: Configuration files for Visual Studio Code.
alembic/: Contains Alembic settings and migrations.
app/: The main FastAPI project directory.
-
author/: Example structure for modular design, allowing easy decoupling
- schemas/: Contains structured schemas used across the app.
- apis.py: Stores all API route definitions.
- crud.py: Contains CRUD operations.
- exceptions.py: Stores custom exceptions.
- formatters.py: Holds formatting functions.
- models.py: Defines database models
- selectors.py: Handles data retrieval operations..
- services.py: Manages data modification operations (POST, PUT, DELETE).
-
common/: Contains shared utilities and general functionalities.
- annotations.py: Stores custom type annotations.
- auth.py: Manages authentication.
- crud.py: Where all the general/generic CRUD classes will be kept.
- dependencies.py: Defines dependencies used across modules.
- exceptions.py: Where all the general/generic exceptions are kept.
- paginators.py: Collection of helpers for response pagination.
- schemas.py: Where you will keep your general/generic schemas.
- security.py: Where all the security functions are kept.
- types.py: Contains common types used in the application.
- utils.py: General utility functions.
-
Core/: Core functionalities of the application.
- database.py: Database connection and session management.
- handlers.py: Exception handlers.
- settings.py: Environment configuration settings.
- tags.py: Route tags.
-
external/: Entry point and external dependencies.
- main.py:: Main application entry point.
tests.py/: Houses all application tests.
env_sample.txt: Sample environment variables.
.flake8: Contains the configurations for flake8.
.gitignore: Specifies which folders/files to not push to github.
.pylintrc: Contains the configurations for pylint.
alembic.ini: Contains all the configurations for.
docker-compose.yml: Docker configurations for containerized setup.
Dockerfile: Instructions to build docker image.
LICENSE: License details.
pytest.ini: Where all the pytest configurations will be kept.
railway.toml: Contains all the railway configurations.
requirements.txt: Lists all application dependencies.
start.sh: Application start up processes.
.vscode
alembic/
app/
author/
schemas/
__init__.py
base.py
create.py
edit.py
response.py
__init__.py
apis.py
crud.py
exceptions.py
formatters.py
models.py
selectors.py
services.py
common/
__init__.py
annotations.py
auth.py
crud.py
dependencies.py
exceptions.py
paginators.py
schemas.py
security.py
types.py
utils.py
core/
__init__.py
database.py
handlers.py
settings.py
tags.py
external/
__init__.py
main.py
tests/
__init__.py
.env_sample
.flake8
.gitignore
.pylintrc
alembic.ini
docker-compose.yml
Dockerfile
LICENSE
pytest.ini
raiway.toml
README.md
requirements.txt
start.sh
1. Set up Virtual Environment (if you are not using Docker)
$ py -m venv .venv
$ .venv\Scripts\activate # Windows
$ source .venv/bin/activate # macOS/Linux
2. Install Dependencies: Local install
$ pip install -r requirements.txt
Or with Docker
docker-compose up
- Create a
.env
file and add environment variables (use .env_sample as a guide).
- Initialize Database Tables
alembic upgrade head
5. Start the Application in Development Mode
fastapi dev
Production Mode
fastapi run
- Test the application by making requests to the endpoints.
This project is licensed under the MIT License - see the LICENSE file for details.
YOU CAN DIRECTLY DEPLOY YOUR OWN VERSION USING THE LINK BELOW
We welcome contributions from the community to make this Behemoth FastAPI Starter Template even better. If you have ideas for improvements, new features, or bug fixes, feel free to:
- Fork the repository and create a new branch.
- Submit a Pull Request with your changes.
- Engage in discussions on ideas, enhancements, or fixes.
By contributing, you help make this template more valuable for developers building FastAPI applications. Together, we can create a robust foundation for large-scale projects. Thank you for your support!
For additional information, refer to the following resources:
- FastAPI documentation: https://fastapi.tiangolo.com/
- Alembic documentation: https://alembic.sqlalchemy.org/en/latest/
- Django Structure for Scale lecture: https://youtu.be/yG3ZdxBb1oo?si=D6A9dHyhKb_Kf-J7
Feel free to reach out if you have questions or suggestions. I’m also open to consulting and tutoring opportunities. 😊
- Name: Bello Shehu Ango
- Email: angobello0@gmail.com
- GitHub: https://github.com/Grey-A
- Linkedin: https://linkedin.com/in/angobello0
- Upwork: https://www.upwork.com/freelancers/~01bb1007bf8311388a
- Instagram: https://www.instagram.com/bello_ango0/