0
Fork 0
mirror of https://github.com/immich-app/immich.git synced 2025-04-15 03:11:28 -05:00
immich/web
martin 78a2a9e666
refactor(web): user-settings (#3700)
* refactor(web): user-settings

* feat: move the logic to the server

* use const

* fix: error 403

* fix: remove console.log
2023-08-16 22:56:06 -05:00
..
__mocks__
src refactor(web): user-settings (#3700) 2023-08-16 22:56:06 -05:00
static
.dockerignore
.eslintignore
.eslintrc.cjs
.gitignore
.npmrc
.prettierignore
.prettierrc feat(web): timeline bucket for albums (4) (#3604) 2023-08-11 11:00:51 -05:00
babel.config.cjs
Dockerfile fix(server): properly handle SIGTERM (#3350) 2023-07-21 09:20:04 -05:00
entrypoint.sh fix(server): properly handle SIGTERM (#3350) 2023-07-21 09:20:04 -05:00
how-to-scroll-like-google.md
jest.config.mjs
LICENSE
package-lock.json feat (web/server) 360 degrees Web panoramas [attempt 2] (#3412) 2023-07-27 23:29:09 -05:00
package.json chore(web): organize prettier trigger order (#3538) 2023-08-03 16:26:48 -05: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.