No description https://computecloud.in
  • Svelte 86.8%
  • JavaScript 4.6%
  • CSS 3.3%
  • HTML 2.9%
  • TypeScript 2.4%
Find a file
2026-02-05 17:56:08 +05:30
.vscode Initial commit. 2026-02-02 21:08:33 +05:30
src More improvements. 2026-02-05 17:56:08 +05:30
static Initial commit. 2026-02-02 21:08:33 +05:30
.gitignore Minor fixes. 2026-02-05 17:28:58 +05:30
.npmrc Initial commit. 2026-02-02 21:08:33 +05:30
.prettierignore Initial commit. 2026-02-02 21:08:33 +05:30
.prettierrc Initial commit. 2026-02-02 21:08:33 +05:30
env.example More qol. 2026-02-05 02:16:47 +05:30
eslint.config.js Initial commit. 2026-02-02 21:08:33 +05:30
package.json More improvements. 2026-02-05 17:56:08 +05:30
pnpm-lock.yaml More improvements. 2026-02-05 17:56:08 +05:30
pnpm-workspace.yaml More qol. 2026-02-05 02:16:47 +05:30
README.md Initial commit. 2026-02-02 21:08:33 +05:30
svelte.config.js More qol. 2026-02-05 02:16:47 +05:30
tsconfig.json Initial commit. 2026-02-02 21:08:33 +05:30
vite.config.ts More qol. 2026-02-05 02:16:47 +05:30

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
pnpm dlx sv create --template minimal --types ts --add prettier eslint tailwindcss="plugins:typography,forms" sveltekit-adapter="adapter:static" --install pnpm computecloud.in

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.