To run, use
docker compose upIf any changes are made to the database schema, run
docker compose exec backend alembic revision --autogenerate -m "your message here"And then run the migration
docker compose exec backend alembic upgrade headRun tests with
docker compose run --rm backend pytest