Some checks failed
Release / Test backend (push) Successful in 38s
Release / Check ui (push) Failing after 31s
Release / Upload source maps (push) Has been skipped
Release / Docker / ui (push) Has been skipped
Release / Docker / caddy (push) Successful in 41s
Release / Docker / backend (push) Successful in 2m29s
Release / Docker / runner (push) Successful in 2m39s
Release / Gitea Release (push) Has been skipped
Forest — deep green surfaces (#0a130d base) with green-400 accent. Inspired by terminal emulators and dark mode IDE forest schemes. Mono — near-black zinc-950 surface with pure white/zinc-100 accent. Minimal high-contrast monochromatic palette for distraction-free reading. Cyber — near-black blue surface with neon cyan-400 accent and dracula-palette success/danger colors. Cyberpunk aesthetic with neon glow feel. Changes: - app.css: three new [data-theme] blocks with full token sets - +layout.svelte: added forest/mono/cyber to THEMES array (before light themes) - profile/+page.svelte: same additions with i18n label functions - messages/*.json: translated names in all 5 locales (en/fr/ru/pt/id)
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
npx sv create my-app
To recreate this project with the same configuration:
# recreate this project
npx sv@0.12.4 create --template minimal --types ts --install npm ui
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.