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-27 14:54:19 +03:00
..
drizzle feat: promo code 2025-05-26 17:20:53 +03:00
src feat: live price updates on coin page 2025-05-27 14:54:19 +03:00
static feat: profile page + 404 page + refactor code 2025-05-25 18:44:06 +03:00
websocket feat: live trades (/live & sidebar) + sidebar skeleton 2025-05-26 15:06:45 +03:00
.env.example init 2025-05-21 21:34:22 +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 feat: add username availability check API endpoint 2025-05-23 16:26:02 +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: treemap, skeletons 2025-05-27 14:12:29 +03:00
package.json feat: treemap, skeletons 2025-05-27 14:12:29 +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 init 2025-05-21 21:34:22 +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.