Svelte frontend for Damillora's Virtual Memoir
  • Svelte 52%
  • TypeScript 45.8%
  • Dockerfile 0.8%
  • HTML 0.8%
  • JavaScript 0.6%
Find a file
Damillora b700941573
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
feat: change to docker hub
2026-06-28 14:21:01 +07:00
src chore: start modernizing 2026-06-26 21:58:57 +07:00
static feat: initial commit 2022-07-24 03:52:23 +07:00
.eslintignore feat: initial commit 2022-07-24 03:52:23 +07:00
.eslintrc.cjs chore: update eslint 2023-08-08 20:01:08 +07:00
.gitignore feat: initial commit 2022-07-24 03:52:23 +07:00
.npmrc feat: initial commit 2022-07-24 03:52:23 +07:00
.prettierignore feat: initial commit 2022-07-24 03:52:23 +07:00
.prettierrc feat: initial commit 2022-07-24 03:52:23 +07:00
.woodpecker.yml feat: change to docker hub 2026-06-28 14:21:01 +07:00
Dockerfile chore: update node version 2026-02-05 01:32:05 +07:00
LICENSE feat: initial commit 2022-07-24 03:52:23 +07:00
package-lock.json chore: update to vite 8 2026-06-26 22:04:48 +07:00
package.json chore: update to vite 8 2026-06-26 22:04:48 +07:00
README.md feat: initial commit 2022-07-24 03:52:23 +07:00
renovate.json Add renovate.json 2026-02-04 18:01:35 +00:00
tsconfig.json feat: initial commit 2022-07-24 03:52:23 +07:00
vite.config.js chore: modernize config 2026-06-26 22:08:40 +07:00

create-svelte

Everything you need to build a Svelte project, powered by create-svelte.

Creating a project

If you're seeing this, you've probably already done this step. Congrats!

# create a new project in the current directory
npm init svelte

# create a new project in my-app
npm init svelte 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.