Skip to content

Commands

Authoritative command reference for development, testing, building, and deployment.

Development

CommandDescription
make devStart local dev server (Node adapter)
make buildBuild the application
make helpShow all available Makefile commands
npm run devAlternative: start dev server via npm

Quality checks

CommandDescription
npm run checkTypeScript + Svelte type checking
npm testRun unit and integration tests
npm run check:boundariesValidate monorepo import boundaries

Database

CommandDescription
npm run db:generateGenerate Drizzle migration from schema changes
npm run db:migrate:localApply migrations to local SQLite database
npm run db:migrate:remoteApply migrations to remote D1 database

Documentation

CommandDescription
npm run docs:devStart docs dev server
npm run docs:buildBuild docs site
npm run docs:checkValidate docs links and structure

CI workflows

WorkflowFileTrigger
App CI/CD.github/workflows/apps-ci.ymlPush to main
Docs Deploy.github/workflows/docs-deploy.ymlPush to main (docs changes)

The app CI/CD workflow runs: install → check → test → build → migrate → sync secrets → deploy.

Retired commands

These commands have been removed:

CommandReplacement
npm run new-eventPlatform UI at /platform/events/create
npm run use-eventHostname resolution (no event selection needed)
npm run setup-cloudflareManual resource setup + wrangler.toml
npm run deploy-eventCI workflow apps-ci.yml
npm run dev:control-planeUnified app (make dev)
npm run orchestrator:runRemoved — no orchestrator

Released under the MIT License.