Skip to main content

Local Development

  1. Start PostgreSQL:
docker run --name postgres \
--network bridge \
-e POSTGRES_PASSWORD=postgres \
-e POSTGRES_DB=marmot \
-p 5432:5432 \
-d postgres:latest
  1. Start the frontend development server:
cd web/marmot
pnpm install
pnpm dev
  1. In another terminal, start the backend:
make dev

The app will be available at: