feat: scaffold SvelteKit runtime

This commit is contained in:
vince 2026-06-18 17:29:01 +02:00
parent 1c287c782c
commit d87da6c1d1
14 changed files with 544 additions and 1 deletions

35
README.md Normal file
View file

@ -0,0 +1,35 @@
# Dimension Lab Website
Standalone SvelteKit runtime for the Dimension Lab system overview dashboard.
This project is not a Homepage customization and does not depend on Homepage
runtime, frontend code, or configuration. The dashboard will be model-driven:
the reusable renderer stays content-free, while environment-specific data lives
in validated dashboard model state.
## Development
```sh
npm install
npm run dev
```
The current workspace has Bun available, so local verification can also use:
```sh
bun install
bun run dev
```
## Scripts
- `npm run dev`: start the local development server.
- `npm run check`: run Svelte and TypeScript checks.
- `npm run build`: build the production app.
- `npm run preview`: preview the production build.
## Runtime Shape
The first deployment target is a Node/container-friendly SvelteKit build. Later
issues add the versioned dashboard model, SQLite persistence, component system,
Storybook, seed data, and rendering pipeline.