# Development overrides, merged automatically by `docker compose up`. # Mounts the source for live editing and restarts on change via `node --watch`. services: web: command: node --watch src/server.ts # Dev overrides the base toggles: live template edits, dev-throwaway secrets allowed. environment: CACHE_TEMPLATES: "false" REQUIRE_SECURE_SECRETS: "false" volumes: - .:/app - /app/node_modules