immich/web
Alex 9a6dfacf9b
Refactor web to use OpenAPI SDK (#326)
* Refactor main index page

* Refactor admin page

* Refactor Auth endpoint

* Refactor directory to prep for monorepo

* Fixed refactoring path

* Resolved file path in vite

* Refactor photo index page

* Refactor thumbnail

* Fixed test

* Refactor Video Viewer component

* Refactor download file

* Refactor navigation bar

* Refactor upload file check

* Simplify Upload Asset signature

* PR feedback
2022-07-10 21:41:45 -05:00
..
src Refactor web to use OpenAPI SDK (#326) 2022-07-10 21:41:45 -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 OpenAPI Specs and Response DTOs (#320) 2022-07-08 21:26:50 -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 Use npm ci for installing pacakages (#304) 2022-07-04 13:47:25 -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 Refactor web to use OpenAPI SDK (#326) 2022-07-10 21:41:45 -05:00
tailwind.config.cjs Feature - Add upload functionality on Web (#231) 2022-06-19 08:16:35 -05:00
tsconfig.json Refactor web to use OpenAPI SDK (#326) 2022-07-10 21:41:45 -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.