No description
  • TypeScript 55.7%
  • Vue 39.3%
  • CSS 2.2%
  • JavaScript 1.9%
  • Dockerfile 0.4%
  • Other 0.4%
Find a file
2025-11-30 21:43:39 +03:00
.git-hooks chore: pre push hook 2025-10-10 21:54:43 +03:00
client fix: nginx 2025-11-30 21:43:39 +03:00
drizzle feat: seen comment 2025-11-30 20:16:18 +03:00
e2e fix: e2e 2025-11-30 20:22:32 +03:00
public fix: icon 2025-11-30 21:16:23 +03:00
server feat: seen comment 2025-11-30 20:16:18 +03:00
.dockerignore feat: bun 2025-09-17 22:34:49 +03:00
.editorconfig chore: sort by rating 2025-10-07 19:52:07 +03:00
.env.example feat(server): external search 2025-09-22 21:33:01 +03:00
.gitattributes chore: sort by rating 2025-10-07 19:52:07 +03:00
.gitignore chore: sort by rating 2025-10-07 19:52:07 +03:00
.npmrc Batman 2025-09-17 21:41:32 +03:00
.prettierignore chore: move e2e 2025-10-07 20:02:47 +03:00
.prettierrc chore: sort by rating 2025-10-07 19:52:07 +03:00
bun.lock feat: split docker 2025-11-05 21:33:36 +03:00
bunfig.toml chore: repo update 2025-10-10 20:39:26 +03:00
docker-compose.yml feat: split docker 2025-11-05 21:33:36 +03:00
Dockerfile feat: split docker 2025-11-05 21:33:36 +03:00
Dockerfile.client fix: public 2025-11-30 21:08:58 +03:00
drizzle.config.ts feat: add movies and series 2025-10-05 13:26:55 +03:00
eslint.config.js chore: imports order 2025-10-10 21:17:41 +03:00
justfile chore: just 2025-11-05 18:45:22 +03:00
package.json feat: split docker 2025-11-05 21:33:36 +03:00
playwright.config.ts chore: move e2e 2025-10-07 20:02:47 +03:00
README.md Batman 2025-09-17 21:41:32 +03:00
tsconfig.json feat: basic markup 2025-09-24 21:11:59 +03:00
tsconfig.node.json chore: sort by rating 2025-10-07 19:52:07 +03:00
vite.config.ts chore: remove devtools 2025-11-05 20:25:38 +03:00
vitest.config.ts chore: imports order 2025-10-10 21:17:41 +03: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.