0
Fork 0
mirror of https://github.com/immich-app/immich.git synced 2025-01-21 00:52:43 -05:00
immich/web
2023-02-11 22:36:26 -06:00
..
__mocks__/$env/dynamic fix(web): broken unit tests (#947) 2022-11-09 10:32:12 -05:00
src feat(web): avoid duplicate call + small refactor (#1731) 2023-02-11 22:36:26 -06:00
static feat(web): make assets cachable (#1724) 2023-02-10 16:01:35 -06:00
.dockerignore
.eslintignore
.eslintrc.cjs
.gitignore
.npmrc
.prettierignore feat(web): More localisation (#1441) 2023-01-27 23:57:25 -06:00
.prettierrc
babel.config.cjs
Dockerfile chore: reduce docker image size (#1523) 2023-02-02 21:28:34 -06:00
entrypoint.sh Rebind PUBLIC_* env vars inside web container entrypoint (#1363) 2023-01-20 10:36:13 -06:00
how-to-scroll-like-google.md
jest.config.mjs feat(web): make assets cachable (#1724) 2023-02-10 16:01:35 -06:00
LICENSE
package-lock.json feat(web): avoid duplicate call + small refactor (#1731) 2023-02-11 22:36:26 -06:00
package.json feat(web): avoid duplicate call + small refactor (#1731) 2023-02-11 22:36:26 -06:00
postcss.config.cjs
README.md
svelte.config.js
tailwind.config.cjs
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.