No description
  • Svelte 56.9%
  • TypeScript 38.6%
  • CSS 3.4%
  • JavaScript 0.6%
  • Dockerfile 0.3%
  • Other 0.2%
Find a file
Repository files (latest commit first)
Filename Latest commit message Latest commit date
Neshura ded84b7b86
All checks were successful
Build and Release Docker Image / check-tag (push) Successful in 3s
Run Tests on Code / test (push) Successful in 6m30s
Build and Release Docker Image / test (push) Successful in 6m40s
Build and Release Docker Image / build (push) Successful in 3m19s
Build and Release Docker Image / release (push) Successful in 23s
Build and Release Docker Image / deploy (push) Successful in 40s
Update .forgejo/workflows/build-release.yml
2026-09-12 14:41:25 +00:00
.forgejo/workflows Update .forgejo/workflows/build-release.yml 2026-09-12 14:41:25 +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 syntax fix 2026-08-01 12:41:00 +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.1 2026-08-01 12:35:26 +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.