What is Project Lifecycle (start / stop / restart / cleanup)?
Graceful workspace management: stop-before-start, local reset, stuck-project recovery. Lifecycle discipline is why iterating fast doesn’t corrupt running work.
Related terms
Version Rollback
Restoring a saved project state with human-readable notes. Rollbacks make AI experimentation safe: try bold changes knowing any step is recoverable.
Deployment Rollback
Redeploying a known-good commit after a bad release. Distinct from project rollback: this restores production while the workspace keeps iterating.
Traefik Reverse Proxy
The edge router in front of BYOB services: web/websecure entrypoints, Docker and file providers, automatic HTTPS redirects. One proxy terminates TLS and routes every workspace, preview, and API.
Svelte Runes
The `$state`, `$derived`, `$effect`, and `$props` primitives powering Svelte 5 reactivity. Runes are mandatory in generated code: explicit, compilable, and consistent across every component.
File-Based Routing
Pages defined by file location: `+page.svelte` renders, `+layout.svelte` wraps, `+server.js` serves data. The route tree is the app map — no separate router config to drift.
Load Function
Server-side data loading for a route before it renders. Load on the server for content crawlers and users need immediately; reach for client fetching only for interactive extras.