A simple school note-taking and todo app
  • Svelte 34.6%
  • HTML 33.1%
  • TypeScript 19.6%
  • JavaScript 12.7%
Find a file
2025-09-23 22:55:20 -04:00
convex works 2025-09-23 21:18:58 -04:00
src Better UI 2025-09-23 22:55:20 -04:00
static Base Svelte 2025-09-23 20:56:42 -04:00
.gitignore Base Svelte 2025-09-23 20:56:42 -04:00
.npmrc Base Svelte 2025-09-23 20:56:42 -04:00
package-lock.json works 2025-09-23 21:18:58 -04:00
package.json works 2025-09-23 21:18:58 -04:00
README.md works 2025-09-23 21:18:58 -04:00
svelte.config.js Base Svelte 2025-09-23 20:56:42 -04:00
tsconfig.json Base Svelte 2025-09-23 20:56:42 -04:00
vite.config.ts Base Svelte 2025-09-23 20:56:42 -04: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.

Convex Setup

  1. Deploy your Convex backend and get your deployment URL.
  2. Create a .env file in the project root with:
VITE_CONVEX_URL=https://<your-convex-deployment>.convex.cloud
  1. Restart the dev server after setting the environment variable.