Create Docker environment values:
Copy-Item .env.docker.example .env.dockerStart PostgreSQL:
docker compose up -d postgresInitialize and run the demo:
docker compose run --rm runner python cli.py init-db
docker compose run --rm runner python cli.py seed-demo
docker compose run --rm runner python cli.py run-checksStart the apps:
docker compose up -d dashboard backend frontendPorts:
- PostgreSQL:
localhost:5433 - Streamlit:
http://localhost:8501 - FastAPI:
http://localhost:8000 - Next.js frontend:
http://localhost:3000