No description
  • TypeScript 46%
  • Svelte 36.1%
  • CSS 9.7%
  • JavaScript 3.7%
  • Shell 2.9%
  • Other 1.6%
Find a file
2026-02-16 01:55:52 +01:00
.github/workflows feat: update Docker image references in publish workflow from 'schatzmeister' to 'bongo' 2025-11-03 18:44:21 +01:00
e2e feat: initialize SvelteKit project with Tailwind CSS and Vitest 2025-11-02 22:58:28 +01:00
src feat(game): add confetti animation for bingo wins 2025-12-24 02:34:41 +01:00
static feat: initialize SvelteKit project with Tailwind CSS and Vitest 2025-11-02 22:58:28 +01:00
supabase refactor(db): rename primary key constraints and add RLS policies 2025-12-22 04:01:24 +01:00
.env.example feat: add Supabase client setup and initial route for loading preset items 2025-11-03 01:09:09 +01:00
.gitignore feat: initialize SvelteKit project with Tailwind CSS and Vitest 2025-11-02 22:58:28 +01:00
.npmrc feat: initialize SvelteKit project with Tailwind CSS and Vitest 2025-11-02 22:58:28 +01:00
.prettierignore feat: initialize SvelteKit project with Tailwind CSS and Vitest 2025-11-02 22:58:28 +01:00
.prettierrc feat: initialize SvelteKit project with Tailwind CSS and Vitest 2025-11-02 22:58:28 +01:00
components.json feat: add new svelte-shadcn for enhanced styling and utility functions 2025-11-03 01:11:10 +01:00
Dockerfile feat: add Dockerfile and GitHub Actions workflow for publishing Docker image; update GameToggle component font size logic 2025-11-03 18:07:34 +01:00
eslint.config.js feat: initialize SvelteKit project with Tailwind CSS and Vitest 2025-11-02 22:58:28 +01:00
generate-types.sh feat: add Supabase types generation script and update database schema with presets and preset_items tables 2025-11-03 00:07:13 +01:00
package.json feat(game): add confetti animation for bingo wins 2025-12-24 02:34:41 +01:00
playwright.config.ts feat: initialize SvelteKit project with Tailwind CSS and Vitest 2025-11-02 22:58:28 +01:00
pnpm-lock.yaml feat(game): add confetti animation for bingo wins 2025-12-24 02:34:41 +01:00
pnpm-workspace.yaml feat: initialize SvelteKit project with Tailwind CSS and Vitest 2025-11-02 22:58:28 +01:00
publish.sh devops: added tag prompt to publish script 2026-02-16 01:55:52 +01:00
README.md feat: initialize SvelteKit project with Tailwind CSS and Vitest 2025-11-02 22:58:28 +01:00
svelte.config.js feat: initialize SvelteKit project with Tailwind CSS and Vitest 2025-11-02 22:58:28 +01:00
tsconfig.json feat: initialize SvelteKit project with Tailwind CSS and Vitest 2025-11-02 22:58:28 +01:00
vite.config.ts feat: initialize SvelteKit project with Tailwind CSS and Vitest 2025-11-02 22:58:28 +01:00
vitest-setup-client.ts feat: initialize SvelteKit project with Tailwind CSS and Vitest 2025-11-02 22:58:28 +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 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.