1
0
mirror of https://github.com/immich-app/immich.git synced 2024-12-25 10:43:13 +02:00
immich/web
2023-01-10 11:26:37 -06:00
..
__mocks__/$env/dynamic fix(web): broken unit tests (#947) 2022-11-09 10:32:12 -05:00
src Fixed scrolling overflow 2023-01-10 11:26:37 -06:00
static Disallow all robots (#977) 2022-11-15 21:36:04 -06:00
.dockerignore
.eslintignore
.eslintrc.cjs Fix web lint issues 2022-09-08 17:30:49 +02:00
.gitignore
.npmrc
.prettierignore
.prettierrc
babel.config.cjs
Dockerfile chore(server) revert Dockerfile (#878) 2022-10-27 17:21:28 -05:00
entrypoint.sh fix(docker-build): start main process with exec (#1210) 2022-12-29 14:49:02 -06:00
how-to-scroll-like-google.md
jest.config.mjs
LICENSE feat(docker) revert ubuntu base image (#863) 2022-10-25 14:18:37 -05:00
package-lock.json chore(web) update SvelteKit to 1.0.0 (#1110) 2022-12-16 20:51:17 -06:00
package.json feat(web,server): disable password login (#1223) 2023-01-09 16:32:58 -05:00
postcss.config.cjs
README.md
svelte.config.js feat(web): Update to latest version of SvelteKit (#705) 2022-09-16 23:13:22 -05:00
tailwind.config.cjs feat(web) dark mode (#867) 2022-10-26 11:10:48 -05:00
tsconfig.json
vite.config.js

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.