0
Fork 0
mirror of https://github.com/immich-app/immich.git synced 2025-01-07 00:50:23 -05:00
immich/web
Fynn Petersen-Frey ce04e9e07a
feat(server): hardware video acceleration for Rockchip SOCs via RKMPP (#4645)
* feat(server): hardware video acceleration for Rockchip SOCs via RKMPP

* add tests

* use LD_LIBRARY_PATH for custom ffmpeg

* incorporate review feedback

* code re-use for ffmpeg call

* review feedback
2023-10-30 09:39:37 -05:00
..
__mocks__
src feat(server): hardware video acceleration for Rockchip SOCs via RKMPP (#4645) 2023-10-30 09:39:37 -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
how-to-scroll-like-google.md docs: fix typos (#4713) 2023-10-30 09:17:10 -05:00
jest.config.mjs refactor(web): material icons (#4636) 2023-10-25 13:48:25 +00:00
LICENSE
package-lock.json refactor(web): material icons (#4636) 2023-10-25 13:48:25 +00:00
package.json refactor(web): material icons (#4636) 2023-10-25 13:48:25 +00:00
postcss.config.cjs
README.md
svelte.config.js
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.