immich/web
2022-06-11 23:17:20 -05:00
..
src Added account info panel with sign out button (#219) 2022-06-11 23:17:20 -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 WIP refactor container and queuing system (#206) 2022-06-11 16:12:06 -05:00
package.json 20 video conversion for web view (#200) 2022-06-04 18:34:11 -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 lodash library not invoking in production build (#171) 2022-05-22 04:48:38 -05:00
tailwind.config.cjs Add web interface with admin functionality (#167) 2022-05-21 02:23:55 -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.