Dashboard for Carrera race information and statistics https://carrera.neshweb.net
  • TypeScript 49.5%
  • Svelte 47.7%
  • CSS 1.2%
  • JavaScript 1.1%
  • Dockerfile 0.3%
  • Other 0.2%
Find a file
neshura d417c72da3
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 3m13s
Build and Release Docker Image / build (push) Successful in 1m26s
Build and Release Docker Image / release (push) Successful in 17s
Build and Release Docker Image / deploy (push) Successful in 31s
Release 0.19.6
2026-04-26 19:36:54 +00:00
.forgejo/workflows Add regular server-backend to .env during CI 2026-04-02 21:27:39 +00:00
.idea eslint error fixes 2026-03-21 13:47:50 +00:00
.vscode Initial Working Version 2025-12-30 13:05:33 +00:00
src Fix track bests not being fetched automatically during new events 2026-04-26 19:35:44 +00:00
static Initial Working Version 2025-12-30 13:05:33 +00:00
.dockerignore Update Dockerfile 2026-04-02 22:48:07 +00:00
.gitignore Add .yarnrc.yml for Docker builds 2026-04-03 00:07:01 +00:00
.npmrc Initial Working Version 2025-12-30 13:05:33 +00:00
.yarnrc.yml Release 0.17.5 2026-04-03 00:23:23 +00:00
compose.yml Add .yarnrc.yml for Docker builds 2026-04-03 00:07:01 +00:00
Dockerfile Dockerfile changes 2026-04-02 23:55:39 +00:00
eslint.config.js add eslint 2026-03-21 12:10:26 +00:00
LICENSE Initial commit 2025-12-30 12:35:02 +00:00
package.json Release 0.19.6 2026-04-26 19:36:54 +00:00
README.md Initial Working Version 2025-12-30 13:05:33 +00:00
svelte.config.js Remove typescript content from svelte.config.js 2026-03-20 22:55:51 +00:00
tsconfig.json Add Categories helper with unit test 2026-03-19 23:44:57 +00:00
vite.config.ts add unit testing via vitest 2026-03-20 00:15:38 +00:00
yarn.lock Use new best record data structure, add graphs to track bests 2026-04-25 02:03:12 +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 in the current directory
npx sv create

# create a new project in my-app
npx sv create my-app

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.