No description
  • TypeScript 44%
  • Svelte 40%
  • JavaScript 11.7%
  • HTML 2.8%
  • Dockerfile 1.5%
Find a file
emmiebyte 64ad240053
All checks were successful
Build and Push Docker Image / build-and-push (push) Successful in 54s
Add timezone configuration for Europe/Berlin in Dockerfile
2026-04-30 14:08:44 +02:00
.forgejo/workflows add docker 2026-03-21 13:26:24 +01:00
.vscode init 2026-03-21 13:14:25 +01:00
src Add minutely auto-reload to /board 2026-04-02 19:08:35 +02:00
static init 2026-03-21 13:14:25 +01:00
.gitignore init 2026-03-21 13:14:25 +01:00
.npmrc init 2026-03-21 13:14:25 +01:00
.prettierignore init 2026-03-21 13:14:25 +01:00
.prettierrc init 2026-03-21 13:14:25 +01:00
Dockerfile Add timezone configuration for Europe/Berlin in Dockerfile 2026-04-30 14:08:44 +02:00
eslint.config.js init 2026-03-21 13:14:25 +01:00
package-lock.json init 2026-03-21 13:14:25 +01:00
package.json init 2026-03-21 13:14:25 +01:00
README.md init 2026-03-21 13:14:25 +01:00
svelte.config.js init 2026-03-21 13:14:25 +01:00
tsconfig.json init 2026-03-21 13:14:25 +01:00
vite.config.ts init 2026-03-21 13:14:25 +01: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
npx sv@0.12.8 create --template demo --types ts --add prettier eslint tailwindcss="plugins:typography,forms" sveltekit-adapter="adapter:static" --install npm get_bahned

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.