Skip to content

Latest commit

 

History

History
49 lines (31 loc) · 586 Bytes

File metadata and controls

49 lines (31 loc) · 586 Bytes

An example FastAPI application built with Python


Development

Start project dependencies

Check compose.yml file

docker compose up -d

Run project

This project uses uv dependency manager, so dependencies are installed automatically on first run.

Start the development server:

make serve

Start celery worker:

make worker 

Start celery beat:

make beat

Linting

make lint

Run tests

make test