You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A monorepo for process engineering calculations and workflows.
Apps
App
Port
Description
apps/web
3000
Dashboard
apps/docs
3001
Documentation site
apps/network-editor
3002
Hydraulic network editor
apps/psv
3003
PSV sizing workflow
apps/design-agents
3004
AI design agents
apps/venting-calculation
3005
Tank venting calculator
Backend
Service
Port
Description
services/api
8000
FastAPI REST API
services/calc-engine
-
Python calculation engine
Quick Start
Docker (Recommended)
# 1. Set PostgreSQL passwordcd infra
echo"POSTGRES_PASSWORD=change-me"> .env
# 2. Start all services
docker compose up -d --build
# 3. Open in browser
open http://localhost:3000 # Dashboard
open http://localhost:8000/docs # API docs
Local Development (Bun)
# Install dependencies
bun install
# Run all apps
bun run dev
Common Commands
bun run build # Build all apps
bun run lint # Lint code
bun run check-types # Type check
bun run format # Format code