1
0
Fork
You've already forked Contingent
0
No description
  • Svelte 38.5%
  • CSS 30.7%
  • JavaScript 16.8%
  • Nix 7.5%
  • HTML 3.8%
  • Other 2.7%
Find a file
2025年07月11日 21:10:48 +03:00
src update prettier config 2025年07月11日 21:10:48 +03:00
static Ready! Go! 2025年07月07日 23:37:57 +03:00
.gitignore Ready! Go! 2025年07月07日 23:37:57 +03:00
.npmrc Ready! Go! 2025年07月07日 23:37:57 +03:00
.prettierignore Ready! Go! 2025年07月07日 23:37:57 +03:00
.prettierrc.mjs update prettier config 2025年07月11日 21:10:48 +03:00
flake.lock add nix flake to manage dev deps 2025年07月08日 00:46:36 +03:00
flake.nix add nix flake to manage dev deps 2025年07月08日 00:46:36 +03:00
LICENSE add LICENSE 2025年07月11日 19:16:27 +03:00
package-lock.json Set up supabase 2025年07月09日 11:15:46 +03:00
package.json Set up supabase 2025年07月09日 11:15:46 +03:00
README.md Ready! Go! 2025年07月07日 23:37:57 +03:00
shell.nix add nix flake to manage dev deps 2025年07月08日 00:46:36 +03:00
svelte.config.js Ready! Go! 2025年07月07日 23:37:57 +03:00
tsconfig.json Ready! Go! 2025年07月07日 23:37:57 +03:00
vite.config.ts Ready! Go! 2025年07月07日 23:37:57 +03: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.