Skip to content

A template for creating web applications using FastAPI

Notifications You must be signed in to change notification settings

bodaue/fastapi-template

Repository files navigation

FastAPI Template

This is a template for a backend API built with FastAPI, SQLAlchemy, Alembic, and PostgreSQL. The project is containerized using Docker, making it easy to deploy and manage.

Technologies:

  • Python
    • FastAPI
    • SQLAlchemy
    • Alembic
  • PostgreSQL
  • Docker

Project Structure

├── alembic/                 # Alembic configurations and migrations
├── app/
│   ├── api/                 # API routes
│   ├── db/                  # Database session, models and repositories
│   ├── services/            # Services layer
│   ├── config.py            # Settings
│   ├── main.py              # Main entry point of the application
│   └── __init__.py
├── alembic.ini              # Alembic configuration file
├── docker-compose.yml       # Docker Compose file for setting up the containers
├── Dockerfile               # Dockerfile for building the app's Docker image
├── pyproject.toml           # Poetry configuration file
├── poetry.lock              # Poetry lock file with exact package versions
└── README.md                # This file

Getting Started

  • Clone the repository
  git clone https://github.com/yourusername/fastapi-template.git
  
  cd fastapi-template
  • Set up environment variables (.env)

    • Rename .env.example to .env
    • Configure it
  • Build and run the containers

  docker-compose up --build

Releases

No releases published

Packages

No packages published