A production-grade FastAPI template with support for PostgreSQL, SQLite, and MySQL.
Project description
FastAPI Server Kit
A production-grade FastAPI template and toolkit with support for PostgreSQL (Sync/Async), SQLite (Async), and MySQL (Async). Built for speed, scalability, and clean architecture.
Features
- Multi-Database Support: Easily switch between SQLite, PostgreSQL, and MySQL.
- SQLAlchemy 2.0 (Async): Modern ORM patterns with centralized session management.
- Clean Architecture: Organized into Core, Models, Repositories, Services, and Routers.
- Alembic Migrations: Ready-to-use async migration setup.
- Environment Management: Robust configuration using
pydantic-settings.
Installation
You can install fastapi-server-kit using uv (recommended) or pip:
uv add fastapi-server-kit
# or
pip install fastapi-server-kit
Quick Start (CLI)
The easiest way to start a new project is to use the built-in CLI tool:
# Initialize a new server folder in your current directory
fastapi-server-kit
This will create a server/ directory with the complete production-ready structure.
Manual Setup
If you prefer to clone the repository or use it as a template:
git clone https://github.com/atnatewoshw/fastapi-starter-template
cd fastapi-starter-template/server
2. Configure Environment
Create and configure your .env file from .env_example:
cp .env_example .env
3. Install Dependencies
uv sync
4. Running Locally
uv run uvicorn fastapi_server_kit.server.app.main:app --reload
Project Structure
The kit follows a structured directory layout within the server package:
fastapi_server_kit/
└── server/
└── app/
├── core/ # Configuration and security
├── models/ # SQLAlchemy models
├── repositories/ # Data access layer
├── routers/ # API endpoints
├── schemas/ # Pydantic models
└── services/ # Business logic
Database Migrations
Initialize your database:
uv run alembic upgrade head
Create a new migration:
uv run alembic revision --autogenerate -m "description"
License
This project is licensed under the MIT License.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file fastapi_server_kit-0.1.1.tar.gz.
File metadata
- Download URL: fastapi_server_kit-0.1.1.tar.gz
- Upload date:
- Size: 5.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.9.28 {"installer":{"name":"uv","version":"0.9.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":null,"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b085b4df69175b56f74c163418903732652587164195268de97b4e97ebc8ec45
|
|
| MD5 |
658042ecd65f52765b00cfe79b82580f
|
|
| BLAKE2b-256 |
4b0f02a56e0e197db4c2283e37c10e630f07a9d33af19105f097119dd872e13c
|
File details
Details for the file fastapi_server_kit-0.1.1-py3-none-any.whl.
File metadata
- Download URL: fastapi_server_kit-0.1.1-py3-none-any.whl
- Upload date:
- Size: 4.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.9.28 {"installer":{"name":"uv","version":"0.9.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":null,"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c1dae82b78e43b68e055c8068451628dbe721835b57d27aa6813858146fb2f89
|
|
| MD5 |
64bb73749bf836f35569702b159779cb
|
|
| BLAKE2b-256 |
8accc0a8393f960e043086af5ee5dcb18ca4646d262a809f5e65b921cdf51736
|