Skip to content

Latest commit

 

History

History
34 lines (26 loc) · 514 Bytes

README.md

File metadata and controls

34 lines (26 loc) · 514 Bytes

listcontrols-backend

Lifespan Studies Control Groups Backend

Architecture

  • api - API application root
    • main.py - entry point
    • endpoints - api endpoints
    • db - domain access object (DAO) logic for DB
    • entities - domain entities

Development

Build local development image

make build

Run API app in development mode

make run

DB migrations

  • migrations up:

make migrate_up
  • migrations down:

make migrate_down