Some checks failed
CI / fail2ban Regex (push) Has been cancelled
CI / Unit & Component Tests (push) Has been cancelled
CI / OCR Service Tests (push) Has been cancelled
CI / Backend Unit Tests (push) Has been cancelled
CI / Semgrep Security Scan (push) Has been cancelled
CI / Compose Bucket Idempotency (push) Has been cancelled
CI's node coverage run (vite.config.ts, 'measure utility + server-side logic only') counts every .ts under the include globs via all-files, but the Tiptap NodeView builds live ProseMirror DOM and only runs in the browser editor — it is exercised by the client project's browser tests, not the node run. Left in, it showed 0% and dragged global functions (78.68%) and branches (78.48%) below the 80% gate. Exclude it alongside the .svelte / browser-only UI files this config already measures around. Restores the gate: statements 88.82%, branches 82.3%, functions 87.27%, lines 89.77% (server project, verified locally). Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
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.