No description
Find a file
2025-12-06 04:07:48 -05:00
src feat: Add order validation and navigation guard functionality 2025-12-06 04:07:48 -05:00
static feat(svelte): Initialize SvelteKit project with essential configurations and files 2025-04-09 15:05:44 +02:00
.env feat: Add OpenAPI integration and restructure routing system 2025-11-14 10:40:38 -05:00
.env.example feat: Add OpenAPI integration and restructure routing system 2025-11-14 10:40:38 -05:00
.gitignore feat: Add OpenAPI integration and restructure routing system 2025-11-14 10:40:38 -05:00
.npmrc feat(svelte): Initialize SvelteKit project with essential configurations and files 2025-04-09 15:05:44 +02:00
.prettierignore feat(svelte): Initialize SvelteKit project with essential configurations and files 2025-04-09 15:05:44 +02:00
.prettierrc feat(svelte): Initialize SvelteKit project with essential configurations and files 2025-04-09 15:05:44 +02:00
AGENTS.md feat: Add OpenAPI integration and restructure routing system 2025-11-14 10:40:38 -05:00
cookies.txt feat: Add OpenAPI integration and restructure routing system 2025-11-14 10:40:38 -05:00
DEPLOYMENT.md feat: Add OpenAPI integration and restructure routing system 2025-11-14 10:40:38 -05:00
docker-compose.dev.yml feat: Add OpenAPI integration and restructure routing system 2025-11-14 10:40:38 -05:00
docker-compose.prod.yml fix(docker): Update API base URL to include /v1 endpoint in production 2025-11-14 16:49:01 -05:00
docker-compose.yml feat: Add OpenAPI integration and restructure routing system 2025-11-14 10:40:38 -05:00
Dockerfile feat: Add OpenAPI integration and restructure routing system 2025-11-14 10:40:38 -05:00
eslint.config.js feat(svelte): Initialize SvelteKit project with essential configurations and files 2025-04-09 15:05:44 +02:00
generate-typescript-type-from-openapi.sh feat: Add OpenAPI integration and restructure routing system 2025-11-14 10:40:38 -05:00
Lacoopé.bmpr feat(svelte): Initialize SvelteKit project with essential configurations and files 2025-04-09 15:05:44 +02:00
package-lock.json feat: Add OpenAPI integration and restructure routing system 2025-11-14 10:40:38 -05:00
package.json feat: Add OpenAPI integration and restructure routing system 2025-11-14 10:40:38 -05:00
push-to-prod.sh feat: Add OpenAPI integration and restructure routing system 2025-11-14 10:40:38 -05:00
README.md feat(svelte): Initialize SvelteKit project with essential configurations and files 2025-04-09 15:05:44 +02:00
svelte.config.js feat(docker): Add Dockerfile and docker-compose for Svelte app deployment 2025-04-11 14:36:44 +02:00
tsconfig.json feat(svelte): Initialize SvelteKit project with essential configurations and files 2025-04-09 15:05:44 +02:00
vite.config.ts feat(svelte): Initialize SvelteKit project with essential configurations and files 2025-04-09 15:05:44 +02:00
vitest-setup-client.ts feat(svelte): Initialize SvelteKit project with essential configurations and files 2025-04-09 15:05:44 +02: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.