immich/web
2022-05-21 02:30:00 -05:00
..
src Add web interface with admin functionality (#167) 2022-05-21 02:23:55 -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 docker image of web 2022-05-21 02:30:00 -05:00
entrypoint.sh Add web interface with admin functionality (#167) 2022-05-21 02:23:55 -05:00
package-lock.json Add web interface with admin functionality (#167) 2022-05-21 02:23:55 -05:00
package.json Add web interface with admin functionality (#167) 2022-05-21 02:23:55 -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 Add web interface with admin functionality (#167) 2022-05-21 02:23:55 -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.