immich/cli
2025-09-11 19:39:05 +00:00
..
bin feat: bin for cli (#19648) 2025-07-01 08:00:41 -04:00
src fix: cli upload deletes files that failed uploading (#19140) 2025-06-12 17:32:35 -04:00
.editorconfig
.gitignore
.npmignore
.nvmrc chore(deps): update node.js to v22.19.0 (#21509) 2025-09-05 08:43:58 -04:00
.prettierignore
.prettierrc
Dockerfile chore: use pnpm for builds (#19752) 2025-08-19 08:55:24 -04:00
eslint.config.mjs chore: finish migrating eslint config files; bump unicorn (#17200) 2025-03-31 12:18:25 +01:00
LICENSE
package.json chore: version v1.142.0 2025-09-11 19:39:05 +00:00
README.md fix(cli): Update build instructions for CLI (#11874) 2024-08-28 13:25:58 +00:00
tsconfig.json
vite.config.ts
vitest.config.ts

A command-line interface for interfacing with the self-hosted photo manager Immich.

Please see the Immich CLI documentation.

For developers

Before building the CLI, you must build the immich server and the open-api client. To build the server run the following in the server folder:

$ npm install
$ npm run build

Then, to build the open-api client run the following in the open-api folder:

$ ./bin/generate-open-api.sh

To run the Immich CLI from source, run the following in the cli folder:

$ npm install
$ npm run build
$ ts-node .

You'll need ts-node, the easiest way to install it is to use npm:

$ npm i -g ts-node

You can also build and install the CLI using

$ npm run build
$ npm install -g .