happyDomain/web
Pierre-Olivier Mercier 3213d00ff4 web: split checker config (/checkers) from runtime results (/checks)
The route at /domains/[dn]/checks listed checker configurations, not check
runs. Rename it to /checkers and use /checks for a new aggregated dashboard
that surfaces the latest result for every enabled checker across the domain
and its services in one place. Same split applied at service scope.
2026-05-25 16:10:24 +08:00
..
src web: split checker config (/checkers) from runtime results (/checks) 2026-05-25 16:10:24 +08:00
static Reformat manifest.json, add id and fix spelling 2026-03-01 17:40:20 +07:00
.gitignore web: Migrate frontend to openapi-ts code generation 2026-01-26 12:34:55 +08:00
.prettierignore refactor: restructure project architecture and folder hierarchy 2025-05-28 22:00:02 +02:00
assets-noui.go mailer: Implement asset directory fallback and update build paths 2026-01-02 20:49:46 +07:00
assets.go ci: fix pipeline inconsistencies and improve Docker builds 2026-05-10 20:17:55 +08:00
generate_npm.go ci: fix pipeline inconsistencies and improve Docker builds 2026-05-10 20:17:55 +08:00
openapi-ts.config.ts Add format:"date-time" struct tags to time.Time model fields 2026-04-04 22:05:28 +07:00
package.json chore(deps): replace svelte-preprocess with vitePreprocess 2026-05-25 11:30:36 +08:00
README.md refactor: restructure project architecture and folder hierarchy 2025-05-28 22:00:02 +02:00
routes.go Fix malformed manifest.json 2026-05-10 20:17:55 +08:00
svelte.config.js chore(deps): replace svelte-preprocess with vitePreprocess 2026-05-25 11:30:36 +08:00
tsconfig.json refactor: restructure project architecture and folder hierarchy 2025-05-28 22:00:02 +02:00
vite.config.ts refactor: restructure project architecture and folder hierarchy 2025-05-28 22:00:02 +02:00

create-svelte

Everything you need to build a Svelte project, powered by create-svelte.

Creating a project

If you're seeing this, you've probably already done this step. Congrats!

# create a new project in the current directory
npm create svelte@latest

# create a new project in my-app
npm create svelte@latest my-app

Developing

Once you've created a project and installed dependencies with npm install (or pnpm install or yarn), start a development server:

npm run dev

# or start the server and open the app in a new browser tab
npm run dev -- --open

Building

To create a production version of your app:

npm run build

You can preview the production build with npm run preview.

To deploy your app, you may need to install an adapter for your target environment.