No description
  • Svelte 56.9%
  • TypeScript 37.9%
  • CSS 3.8%
  • JavaScript 0.7%
  • Dockerfile 0.4%
  • Other 0.3%
Find a file
Neshura 3e5a7082c1
All checks were successful
Build and Release Docker Image / check-tag (push) Successful in 7s
Build and Release Docker Image / test (push) Successful in 3m20s
Build and Release Docker Image / build (push) Successful in 1m56s
Build and Release Docker Image / release (push) Successful in 10s
Build and Release Docker Image / deploy (push) Successful in 45s
Run Tests on Code / test (push) Successful in 3m19s
Update .forgejo/workflows/build-release.yml
2026-06-11 09:03:15 +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 redesign expense editing and adding 2026-06-10 22:56:40 +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.7.0 2026-06-10 22:56:58 +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.