Skip to content

Latest commit

 

History

History
34 lines (24 loc) · 632 Bytes

File metadata and controls

34 lines (24 loc) · 632 Bytes

Docker Setup

Create Docker environment values:

Copy-Item .env.docker.example .env.docker

Start PostgreSQL:

docker compose up -d postgres

Initialize 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-checks

Start the apps:

docker compose up -d dashboard backend frontend

Ports:

  • PostgreSQL: localhost:5433
  • Streamlit: http://localhost:8501
  • FastAPI: http://localhost:8000
  • Next.js frontend: http://localhost:3000