Python 3.11Postgresql 15
DEBUG=True
SECRET_KEY=super_secret_key
DB_URL=postgres://postgres:password@localhost/database_name
PAGINATION_PER_PAGE=20
JWT_SECRET=secret_key
JWT_ALG=HS256
JWT_EXP=86400Run database server
docker compose -f ./docker-compose-dev.yml upCreate your first migration
alembic revision --autogenerateUpgrading the database when new migrations are created
alembic upgrade headmake devCheck API documentation at localhost:8000/docs or localhost:8000/redoc
make migratemake test