Everything you need to build a Svelte project, powered by sv.
If you're seeing this, you've probably already done this step. Congrats!
# create a new project
npx sv create my-appTo recreate this project with the same configuration:
# recreate this project
deno run npm:sv@0.14.1 create --template minimal --types ts --add prettier eslint tailwindcss="plugins:typography,forms" sveltekit-adapter="adapter:static" devtools-json mcp="ide:opencode" --install deno .Install dependencies and start a local development server with Deno:
deno install --allow-scripts=npm:esbuild
deno task dev
# or start the server and open the app in a new browser tab
deno task dev -- --openRun the UI in Docker:
docker compose upFor Docker Compose Watch:
docker compose watchTo create a production version of your app:
deno task buildYou can preview the production build with deno task preview.
To deploy your app, you may need to install an adapter for your target environment.