1
0
mirror of https://github.com/immich-app/immich.git synced 2024-11-28 09:33:27 +02:00
immich/web
Alessandro (Ale) Segala ab3f82cfe4
feat(server): add storage template variable assetId (#4555)
* Added assetId as template

Co-authored-by: Jason Rasmussen <jrasm91@gmail.com>
Signed-off-by: ItalyPaleAle <43508+ItalyPaleAle@users.noreply.github.com>

* styling

* styling

---------

Signed-off-by: ItalyPaleAle <43508+ItalyPaleAle@users.noreply.github.com>
Co-authored-by: Jason Rasmussen <jrasm91@gmail.com>
Co-authored-by: Alex Tran <alex.tran1502@gmail.com>
2023-10-20 16:17:17 -05:00
..
__mocks__
src feat(server): add storage template variable assetId (#4555) 2023-10-20 16:17:17 -05:00
static
.dockerignore
.eslintignore
.eslintrc.cjs
.gitignore
.npmrc
.prettierignore
.prettierrc chore(web): remove flowbite (#4178) 2023-09-23 11:50:21 +07:00
babel.config.cjs
Dockerfile chore(server,web): bump node version to 20.8 (#4311) 2023-10-03 09:34:35 -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 chore(server,web,docs) bulk bump of dependencies with vulnerabilities (#4312) 2023-10-10 08:31:21 -04:00
package.json chore(web): remove flowbite (#4178) 2023-09-23 11:50:21 +07:00
postcss.config.cjs
README.md
svelte.config.js chore(web): Update to Svelte 4 (#3196) 2023-07-15 20:13:04 -05:00
tailwind.config.cjs chore(web): remove flowbite (#4178) 2023-09-23 11:50:21 +07:00
tsconfig.json
vite.config.js fix(web): dev mode repeatedly optimizing dependencies (#4379) 2023-10-07 05:49:34 -05: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.