local dev stuff

This commit is contained in:
2026-03-09 16:56:58 +01:00
parent 627628f36c
commit b27db93a90
3 changed files with 64 additions and 0 deletions

View File

@@ -31,3 +31,36 @@
Verification results: ✅ symbiote build → dist/ with index.html + manifest.json ✅ web build → SvelteKit static output
✅ cargo check → no errors
Local dev workflow is now:
# Start Postgres
docker compose up -d
# Copy and fill in secrets
cp .env.example .env
# Run backend
cd backend && cargo run
# Symbiote (build-watch mode — see below)
pnpm dev:symbiote
# Web app
pnpm dev:web Local dev workflow is now:
# Start Postgres
docker compose up -d
# Copy and fill in secrets
cp .env.example .env
# Run backend
cd backend && cargo run
# Symbiote (build-watch mode — see below)
pnpm dev:symbiote
# Web app
pnpm dev:web