This repository has been archived on 2025-08-19. You can view files and clone it, but you cannot make any changes to its state, such as pushing and creating new issues, pull requests or comments.
coinstorge/website
2025-05-31 13:39:59 +03:00
..
drizzle recreate drizzle stuff 2025-05-30 14:25:12 +03:00
src fix: portfolio showing "failed" during load 2025-05-31 13:39:59 +03:00
static feat: logo 2025-05-30 13:50:06 +03:00
websocket remove cluster file 2025-05-30 15:02:26 +03:00
.env.example quick production test script 2025-05-30 12:24:21 +03:00
.gitignore init 2025-05-21 21:34:22 +03:00
.npmrc init 2025-05-21 21:34:22 +03:00
.postcssrc.json init 2025-05-21 21:34:22 +03:00
.prettierignore init 2025-05-21 21:34:22 +03:00
.prettierrc init 2025-05-21 21:34:22 +03:00
bun.lock fix: handle coin errors gracefully 2025-05-31 13:17:37 +03:00
components.json init 2025-05-21 21:34:22 +03:00
drizzle.config.ts init 2025-05-21 21:34:22 +03:00
package-lock.json feat: gambling (coinflip & slots) 2025-05-29 14:12:27 +03:00
package.json fix: handle coin errors gracefully 2025-05-31 13:17:37 +03:00
postcss.config.js init 2025-05-21 21:34:22 +03:00
README.md init 2025-05-21 21:34:22 +03:00
svelte.config.js use adapter node 2025-05-30 14:58:57 +03:00
tailwind.config.ts init 2025-05-21 21:34:22 +03:00
tsconfig.json init 2025-05-21 21:34:22 +03:00
vite.config.ts init 2025-05-21 21:34:22 +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.