Fooder APP in Svelte
Find a file
2026-04-16 22:11:34 +02:00
.vscode first commit 2026-04-01 23:51:16 +02:00
src [refactor] 2026-04-16 22:11:34 +02:00
static implement barcode scanning + PWA features 2026-04-02 08:57:27 +02:00
.env.example [api] updated 2026-04-07 22:39:28 +02:00
.gitignore first commit 2026-04-01 23:51:16 +02:00
.npmrc first commit 2026-04-01 23:51:16 +02:00
CLAUDE.md claude.md 2026-04-02 15:21:05 +02:00
docker-compose.build.yml first commit 2026-04-01 23:51:16 +02:00
docker-compose.yml register redirects to settings 2026-04-08 12:02:56 +02:00
Dockerfile first commit 2026-04-01 23:51:16 +02:00
Dockerfile.dev first commit 2026-04-01 23:51:16 +02:00
nginx.conf first commit 2026-04-01 23:51:16 +02:00
package-lock.json implement barcode scanning + PWA features 2026-04-02 08:57:27 +02:00
package.json implement barcode scanning + PWA features 2026-04-02 08:57:27 +02:00
pwa-assets.config.ts implement barcode scanning + PWA features 2026-04-02 08:57:27 +02:00
README.md first commit 2026-04-01 23:51:16 +02:00
svelte.config.js first commit 2026-04-01 23:51:16 +02:00
tsconfig.json first commit 2026-04-01 23:51:16 +02:00
vite.config.ts offline mode optimizations 2026-04-08 22:05:10 +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
npx sv create my-app

To recreate this project with the same configuration:

# recreate this project
npx sv@0.13.1 create --template minimal --types ts --install npm .

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.