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
Face 16ad425bb5 feat: add username availability check API endpoint
feat: create user image retrieval API endpoint

feat: enhance coin page with dynamic data fetching and improved UI

feat: implement coin creation form with validation and submission logic

feat: add user settings page with profile update functionality
2025-05-23 16:26:02 +03:00
..
drizzle feat: add username availability check API endpoint 2025-05-23 16:26:02 +03:00
src feat: add username availability check API endpoint 2025-05-23 16:26:02 +03:00
static auth & sidebar 2025-05-22 13:17:11 +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 auth & sidebar 2025-05-22 13:17:11 +03:00
package.json feat: add username availability check API endpoint 2025-05-23 16:26:02 +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.