Svelte frontend for Damillora's Virtual Memoir
Go to file
Damillora d65edf74ee
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
fix: update node version for deploy
2024-09-11 13:08:09 +07:00
src feat: migrate to sveltekit 2 2024-09-11 13:07:44 +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 chore: switch CI platform 2024-03-20 13:04:40 +00:00
Dockerfile fix: update node version for deploy 2024-09-11 13:08:09 +07:00
LICENSE feat: initial commit 2022-07-24 03:52:23 +07:00
package-lock.json feat: migrate to sveltekit 2 2024-09-11 13:07:44 +07:00
package.json feat: migrate to sveltekit 2 2024-09-11 13:07:44 +07:00
README.md feat: initial commit 2022-07-24 03:52:23 +07:00
svelte.config.js feat: update not found handling 2022-07-24 05:04:56 +07:00
tsconfig.json feat: initial commit 2022-07-24 03:52:23 +07:00
vite.config.js feat: update not found handling 2022-07-24 05:04:56 +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.