No description
Find a file
2025-08-14 10:55:27 -07:00
src Add Phoenix event page 2025-08-14 10:55:27 -07:00
static Merge pull request #48 from samuelgirmametaferia/main 2025-08-13 14:55:10 -04:00
.env.example Rewrite hero with email RSVP 2025-08-04 23:28:29 -04:00
.gitignore Move everything 2025-07-14 13:49:34 -04:00
.npmrc Move everything 2025-07-14 13:49:34 -04:00
.prettierignore Move everything 2025-07-14 13:49:34 -04:00
.prettierrc Move everything 2025-07-14 13:49:34 -04:00
bun.lock Fix mdsvex error 2025-08-05 03:42:34 -04:00
daydreamkl.png Add files via upload 2025-08-05 12:26:49 -04:00
Dockerfile Add curl to Dockerfile 2025-07-29 19:44:07 -04:00
emails.log build 2025-07-14 13:52:49 -04:00
package-lock.json Revert deleted logos + modified package files 2025-08-13 14:54:56 -04:00
package.json Revert deleted logos + modified package files 2025-08-13 14:54:56 -04:00
README.md Move everything 2025-07-14 13:49:34 -04:00
svelte.config.js Add full guide 2025-07-29 17:30:10 -04:00
tsconfig.json Move everything 2025-07-14 13:49:34 -04:00
vite.config.ts Move everything 2025-07-14 13:49:34 -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.