Rafeed M. Bhuiyan 245b7f0103 dev (#3)
Co-authored-by: pptx704 <rafeedm.bhuiyan@gmail.com>
Reviewed-on: #3
2025-07-21 14:00:23 +00:00
2025-07-21 14:00:23 +00:00
2025-07-21 14:00:23 +00:00
2025-06-14 04:28:24 +03:00
2025-07-21 14:00:23 +00:00
2025-07-21 14:00:23 +00:00
2025-07-17 12:55:20 +00:00
2025-07-21 14:00:23 +00:00
2025-07-21 14:00:23 +00:00
2025-06-14 04:28:24 +03:00

Omukk FastAPI Template

Template repository for all FastAPI backend projects developed by Omukk.

Components

  • Basic FastAPI dependencies
  • Docker and Docker Compose for easier testing
  • Alembic configuration for database migrations
  • Initial codebase to start from

Using this template

  1. Create a new repository from this template:

    • In Omukk Repos, navigate to this repository
    • Click the "Use this template" button at the top of the page
    • Choose "Create a new repository"
    • Fill in your new repository details and click "Create Repository"
  2. Clone your new repository:

    git clone git@git.omukk.dev/<username>/<repo>.git
    cd <repo>
    

Development and Testing

  1. Install dependencies:

    poetry install
    poetry run pre-commit install
    
  2. Run database server:

    docker compose up db -d
    
  3. Run Dev Server:

    poetry run fastapi dev
    
  4. Stop Database Server:

    docker compose down db
    

Development Rules

  • Create a separate branch from dev and create a PR to dev after making changes

  • Branch names must be meaningful. Check docs for more details

  • Always run black and isort to maintain code consistency (this is done automatically using pre-commit hooks)-

    poetry run isort app main.py
    poetry run black app main.py
    # Make sure to run isort first
    
  • Use static type checking using mypy if you feel like it (It is recommended but not mandatory). Static type checking might help you to identify critical bugs.

Description
Template files for SQL based fastapi projects
Readme 156 KiB
Languages
Python 85.9%
Dockerfile 7.1%
Mako 7%