No description
Find a file
Kristian Krsnik 02a5eae9fc
All checks were successful
Build Release / Build and Release (push) Successful in 5m36s
fix: ci/cd pipeline
2026-04-04 20:38:08 +02:00
.forgejo/workflows fix: ci/cd pipeline 2026-04-04 20:38:08 +02:00
nix fix: ci/cd pipeline 2026-04-04 20:38:08 +02:00
src added progressive web app support 2026-04-01 20:16:12 +02:00
static added progressive web app support 2026-04-01 20:16:12 +02:00
.envrc added svelte flow library 2026-03-27 22:20:19 +01:00
.gitignore packaged with nix 2026-04-01 21:38:18 +02:00
.npmrc initial commit 2026-03-22 17:50:58 +01:00
bun.lock packaged with nix 2026-04-01 21:38:18 +02:00
docker-compose.yaml added docker support 2026-04-02 21:35:10 +02:00
Dockerfile added docker support 2026-04-02 21:35:10 +02:00
flake.lock added automatic docker release 2026-04-02 21:48:11 +02:00
flake.nix fix: ci/cd pipeline 2026-04-04 20:38:08 +02:00
package.json added docker support 2026-04-02 21:35:10 +02:00
README.md initial commit 2026-03-22 17:50:58 +01:00
svelte.config.js packaged with nix 2026-04-01 21:38:18 +02:00
tsconfig.json initial commit 2026-03-22 17:50:58 +01:00
vite.config.ts update: 2026-03-31 22:07:08 +02: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
npx sv create my-app

To recreate this project with the same configuration:

# recreate this project
bun x sv@0.12.8 create --template minimal --types ts --install bun ./

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.