No description
  • TypeScript 58.3%
  • Svelte 38.1%
  • Python 2%
  • CSS 0.9%
  • JavaScript 0.6%
  • Other 0.1%
Find a file
2026-04-18 22:45:21 +02:00
.idea oi 2026-04-18 18:28:58 +02:00
.vscode init 2026-04-16 01:01:25 +02:00
scripts oi 2026-04-18 22:24:23 +02:00
src oi 2026-04-18 22:45:21 +02:00
static i 2026-04-17 22:18:08 +02:00
.codex hmmm 2026-04-16 16:33:40 +02:00
.env.example init 2026-04-16 01:01:25 +02:00
.gitignore oi 2026-04-18 18:28:58 +02:00
.npmrc init 2026-04-16 01:01:25 +02:00
.prettierignore init 2026-04-16 01:01:25 +02:00
.prettierrc init 2026-04-16 01:01:25 +02:00
bun.lock oi 2026-04-18 21:39:38 +02:00
compose.yaml init 2026-04-16 01:01:25 +02:00
drizzle.config.ts init 2026-04-16 01:01:25 +02:00
eslint.config.js init 2026-04-16 01:01:25 +02:00
package.json oi 2026-04-18 21:39:38 +02:00
README.md init 2026-04-16 01:01:25 +02:00
svelte.config.js init 2026-04-16 01:01:25 +02:00
tsconfig.json init 2026-04-16 01:01:25 +02:00
vite.config.ts hmmm 2026-04-16 16:33:40 +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.15.1 create --template minimal --types ts --add prettier eslint tailwindcss="plugins:typography" sveltekit-adapter="adapter:node" drizzle="database:postgresql+postgresql:postgres.js+docker:yes" --install bun domwiki

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.