immich/web
Alex 663f12851e
Fixed filename duplication when upload from web (#288)
* Fixed filename duplication when upload from web

* Fixed cosmetic of detail panel view
2022-06-30 20:43:33 -05:00
..
src Fixed filename duplication when upload from web (#288) 2022-06-30 20:43:33 -05:00
static Add web interface with admin functionality (#167) 2022-05-21 02:23:55 -05:00
.dockerignore Add web interface with admin functionality (#167) 2022-05-21 02:23:55 -05:00
.eslintrc.cjs Add web interface with admin functionality (#167) 2022-05-21 02:23:55 -05:00
.gitignore Add web interface with admin functionality (#167) 2022-05-21 02:23:55 -05:00
.npmrc Add web interface with admin functionality (#167) 2022-05-21 02:23:55 -05:00
.prettierrc Add web interface with admin functionality (#167) 2022-05-21 02:23:55 -05:00
CHANGELOG.md Add web interface with admin functionality (#167) 2022-05-21 02:23:55 -05:00
Dockerfile Added python3 to prod target of web Dockerfile 2022-05-21 02:34:39 -05:00
entrypoint.sh Add web interface with admin functionality (#167) 2022-05-21 02:23:55 -05:00
package-lock.json Feature - Add upload functionality on Web (#231) 2022-06-19 08:16:35 -05:00
package.json chore: improve default setup (#234) 2022-06-23 22:18:50 -05:00
postcss.config.cjs Add web interface with admin functionality (#167) 2022-05-21 02:23:55 -05:00
README.md Add web interface with admin functionality (#167) 2022-05-21 02:23:55 -05:00
svelte.config.js Fixed issue socket-io cannot be connected in production build on web 2022-06-19 09:12:43 -05:00
tailwind.config.cjs Feature - Add upload functionality on Web (#231) 2022-06-19 08:16:35 -05:00
tsconfig.json Add web interface with admin functionality (#167) 2022-05-21 02:23:55 -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.