No description
  • Svelte 56.9%
  • TypeScript 38.6%
  • CSS 3.4%
  • JavaScript 0.6%
  • Dockerfile 0.3%
  • Other 0.2%
Find a file
neshura 01fd1ea6a5
All checks were successful
Run Tests on Code / test (push) Has been skipped
Build and Release Docker Image / check-tag (push) Successful in 3s
Build and Release Docker Image / test (push) Successful in 4m56s
Build and Release Docker Image / build (push) Successful in 2m59s
Build and Release Docker Image / release (push) Successful in 17s
Build and Release Docker Image / deploy (push) Successful in 1m1s
Release 0.9.0
2026-06-21 20:42:21 +00:00
.forgejo/workflows Update .forgejo/workflows/build-release.yml 2026-06-11 09:03:15 +00:00
.idea Add Docker and CI files 2026-05-27 02:23:13 +00:00
.vscode Initial Commit 2026-05-27 02:12:26 +00:00
drizzle drizzle files 2026-06-07 13:54:00 +00:00
src scroll if event name is too long 2026-06-21 20:40:03 +00:00
static Initial Commit 2026-05-27 02:12:26 +00:00
.dockerignore remove unneeded parts of CI pipeline, dockerignore 2026-05-27 02:45:30 +00:00
.env.example add discord auth and expense names 2026-05-27 22:31:28 +00:00
.gitignore yarn install 2026-05-27 02:26:28 +00:00
.npmrc Initial Commit 2026-05-27 02:12:26 +00:00
.yarnrc.yml Add Docker and CI files 2026-05-27 02:23:13 +00:00
components.json Initial Commit 2026-05-27 02:12:26 +00:00
compose.yml add discord auth and expense names 2026-05-27 22:31:28 +00:00
Dockerfile fix Dockerfile and CI 2026-06-07 14:47:01 +00:00
drizzle.config.ts Initial Commit 2026-05-27 02:12:26 +00:00
package.json Release 0.9.0 2026-06-21 20:42:21 +00:00
README.md Initial Commit 2026-05-27 02:12:26 +00:00
svelte.config.js remove unneeded parts of CI pipeline, dockerignore 2026-05-27 02:45:30 +00:00
tsconfig.json Initial Commit 2026-05-27 02:12:26 +00:00
vite.config.ts add event selection and sign up 2026-06-07 21:13:55 +00:00
yarn.lock added event lock and payment indicator, new nav menu 2026-06-07 12:15:39 +00: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.15.3 create --template minimal --types ts --add vitest="usages:unit,component" tailwindcss="plugins:none" --install yarn ./

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.