Files
familienarchiv/frontend
Marcel 109202246e
Some checks failed
CI / Unit & Component Tests (pull_request) Successful in 7m30s
CI / OCR Service Tests (pull_request) Successful in 37s
CI / Backend Unit Tests (pull_request) Failing after 12m40s
CI / fail2ban Regex (pull_request) Successful in 1m46s
CI / Semgrep Security Scan (pull_request) Successful in 35s
CI / Compose Bucket Idempotency (pull_request) Successful in 1m49s
SDD Gate / RTM Check (pull_request) Successful in 31s
SDD Gate / Contract Validate (pull_request) Successful in 41s
SDD Gate / Constitution Impact (pull_request) Successful in 29s
CI / Unit & Component Tests (push) Successful in 7m5s
CI / OCR Service Tests (push) Successful in 48s
CI / Backend Unit Tests (push) Failing after 12m53s
CI / fail2ban Regex (push) Successful in 1m44s
CI / Semgrep Security Scan (push) Successful in 35s
CI / Compose Bucket Idempotency (push) Successful in 1m48s
fix(deps): bump vite 7.3.3 -> 7.3.5 to clear the high-severity audit gate
vite 7.3.3 carries two high-severity advisories (GHSA-v6wh-96g9-6wx3
NTLMv2 UNC disclosure, GHSA-fx2h-pf6j-xcff server.fs.deny bypass), both
flagged by the CI gate `npm audit --audit-level=high --omit=dev`. 7.3.5
is in-range of the existing `^7.3.3` constraint, so this is a
lockfile-only patch with no package.json change. Gate now exits 0.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-16 09:16:58 +02:00
..
2026-03-17 18:35:13 +00:00

sv

Everything you need to build a Svelte project, powered by sv.

Creating a project

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

# create a new project in the current directory
npx sv create

# create a new project in my-app
npx sv create 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.