No description
Find a file
2024-12-30 09:12:26 -08:00
.idea Adding username and password flow. 2024-12-27 17:15:00 -08:00
.storybook First commit 2024-12-26 10:49:41 -08:00
drizzle Fixing seeds, migrations, and drizzle tables etc. 2024-12-27 16:19:21 -08:00
e2e First commit 2024-12-26 10:49:41 -08:00
messages First commit 2024-12-26 10:49:41 -08:00
project.inlang Adding APIs, schemas for base roles etc. 2024-12-26 16:46:28 -08:00
src Bring back mailpit, add roles, user roles, and set up login form for differnent login options. 2024-12-30 09:12:26 -08:00
static First commit 2024-12-26 10:49:41 -08:00
.editorconfig Adding username and password flow. 2024-12-27 17:15:00 -08:00
.env.example First commit 2024-12-26 10:49:41 -08:00
.gitignore First commit 2024-12-26 10:49:41 -08:00
.npmrc First commit 2024-12-26 10:49:41 -08:00
.nvmrc Adding APIs, schemas for base roles etc. 2024-12-26 16:46:28 -08:00
biome.json First commit 2024-12-26 10:49:41 -08:00
components.json First commit 2024-12-26 10:49:41 -08:00
docker-compose.yml Bring back mailpit, add roles, user roles, and set up login form for differnent login options. 2024-12-30 09:12:26 -08:00
Dockerfile.minio First commit 2024-12-26 10:49:41 -08:00
drizzle.config.ts Fixing seeds, migrations, and drizzle tables etc. 2024-12-27 16:19:21 -08:00
package.json Adding timespan, token service, fixing ui for password form. 2024-12-28 23:45:43 -08:00
playwright.config.ts First commit 2024-12-26 10:49:41 -08:00
pnpm-lock.yaml Adding timespan, token service, fixing ui for password form. 2024-12-28 23:45:43 -08:00
postcss.config.js First commit 2024-12-26 10:49:41 -08:00
README.md First commit 2024-12-26 10:49:41 -08:00
svelte.config.js First commit 2024-12-26 10:49:41 -08:00
tailwind.config.ts First commit 2024-12-26 10:49:41 -08:00
tsconfig.json First commit 2024-12-26 10:49:41 -08:00
vite.config.ts First commit 2024-12-26 10:49:41 -08: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.