Svelte frontend for Damillora's Virtual Memoir
Go to file
Damillora 1cb0dde130
ci/woodpecker/push/woodpecker Pipeline was successful Details
chore: switch CI platform
2024-03-20 13:04:40 +00:00
src feat: update plachta and error page 2024-03-20 03:03:39 +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 feat: move to NPM 2024-03-13 00:08:01 +07:00
LICENSE feat: initial commit 2022-07-24 03:52:23 +07:00
README.md feat: initial commit 2022-07-24 03:52:23 +07:00
package-lock.json feat: update plachta and error page 2024-03-20 03:03:39 +07:00
package.json feat: update plachta and error page 2024-03-20 03:03:39 +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

README.md

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.