Skip to main content

Starting services

You can start running:

docker compose up

The web app will be served at http://localhost

The API documentation can be found at http://localhost/api/docs

The OpenAPI spec can be found at http://localhost/api/openapi.json

Skip Docker (not recommended)

Navigate to the /api folder, activate local venv, then start backend app.py with Uvicorn:

cd api/src/  # go to the location of app.py
uvicorn app:create_app --reload

Navigate to the /web folder, and then start web application:

yarn start