···4343npm run ac
44444545# Run individual servers:
4646-npm run site # Main Netlify dev server (port 8888)
4646+npm run site # Main dev server (port 8888)
4747npm run server:session # Session backend (port 8889)
4848npm run stripe # Stripe webhook listener
4949```
···201201202202### Servers and Services
203203204204-1. **System Server** (`system/`)
205205- - Netlify dev server serving the main application
206206- - Edge functions in `netlify/edge-functions/`
207207- - Serverless functions in `netlify/functions/`
204204+1. **System Server** (`system/` + `lith/`)
205205+ - Production: lith monolith (Express + Caddy on DigitalOcean VPS)
206206+ - Dev: `npm run site` (port 8888)
207207+ - Backend functions in `system/netlify/functions/`
208208 - Handles piece serving, authentication, storage APIs
2092092102102. **Session Server** (`session-server/`)
+1-1
SCORE.md
···55555656**Backend**
5757- `session-server/` — Real-time multiplayer (Socket.io)
5858-- Netlify deployment for static assets
5858+- `lith/` — Monolith deploy (Express wrapping Netlify function handlers + static files, served via Caddy on a DigitalOcean VPS)
5959- Authentication and data storage
60606161**Languages**