Local Development
- Start PostgreSQL:
docker run --name postgres \
--network bridge \
-e POSTGRES_PASSWORD=postgres \
-e POSTGRES_DB=marmot \
-p 5432:5432 \
-d postgres:latest
- Start the frontend development server:
cd web/marmot
pnpm install
pnpm dev
- In another terminal, start the backend:
make dev
The app will be available at:
- Frontend: http://localhost:5173
- Backend API: http://localhost:8080
- API Documentation: http://localhost:8080/swagger/index.html