integration_immich
Browse your Immich photo library directly inside Nextcloud — timeline, albums, people, map and more.
File Explorer
- phpunit.yml
- release.yml
- copilot-instructions.md
- dependabot.yml
- info.xml
- routes.php
- autoload.php
- style.scss
- app-dark.svg
- app.svg
- favicon.svg
- .gitkeep
- de.js
- de.json
- es-ES.js
- es-ES.json
- fr.js
- fr.json
- nl.js
- nl.json
- pt.js
- pt.json
- Application.php
- AlbumsController.php
- AssetsController.php
- ConfigController.php
- FoldersController.php
- PageController.php
- PeopleController.php
- UploadController.php
- CspListener.php
- LoadAdditionalScriptsListener.php
- ImmichService.php
- PersonalSection.php
- PersonalSettings.php
- album.png
- allmedia.png
- people.png
- AlbumDetailView.vue
- AlbumsView.vue
- AssetPickerModal.vue
- ExploreView.vue
- FoldersView.vue
- LightboxView.vue
- MapView.vue
- Navigation.vue
- PeopleView.vue
- PersonDetailView.vue
- PhotoGrid.vue
- PlaceDetailView.vue
- TimelineView.vue
- index.js
- api.js
- logger.js
- storage.js
- uploadProgress.js
- immich.js
- adminSettings.js
- AdminSettings.vue
- App.vue
- fileAction-nc32.js
- fileAction.js
- main.js
- adminSettings.php
- main.php
- AlbumsControllerTest.php
- AssetsControllerTest.php
- ConfigControllerTest.php
- FoldersControllerTest.php
- PeopleControllerTest.php
- UploadControllerTest.php
- ImmichServiceTest.php
- ApplicationTest.php
- bootstrap.php
- phpunit.xml
- .gitignore
- .l10nignore
- build-l10n.mjs
- build-release.ps1
- CHANGELOG.md
- composer.json
- composer.lock
- COPYING
- package-lock.json
- package.json
- README.md
- webpack.config.js
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
npm install
View Details ▼
npm install
Install Node packages.
npm {{[i|install]}}
Install dependencies listed in `package.json`:
npm {{[i|install]}} {{package_name}}@{{version}}
Download a specific version of a package and add it to the list of dependencies in `package.json`:
npm {{[i|install]}} {{package_name}} {{[-D|--save-dev]}}
Download the latest version of a package and add it to the list of dev dependencies in `package.json`:
npm run
View Details ▼
npm run
Run a script.
npm run
List available scripts:
npm run {{script_name}}
Run a script:
npm run {{script_name}} -- {{argument}} {{--option}}
Pass arguments to a script:
php
View Details ▼
php
PHP command-line interface.
php {{path/to/file}}
Parse and execute a PHP script:
php {{[-l|--syntax-check]}} {{path/to/file}}
Check syntax on (i.e. [l]int) a PHP script:
php {{[-a|--interactive]}}
Run PHP inter[a]ctively:
tar
View Details ▼
tar
Archiving utility.
Often combined with a compression method, such as `gzip` or `bzip2`.
tar cf {{path/to/target.tar}} {{path/to/file1 path/to/file2 ...}}
[c]reate an archive and write it to a [f]ile:
tar czf {{path/to/target.tar.gz}} {{path/to/file1 path/to/file2 ...}}
[c]reate a g[z]ipped archive and write it to a [f]ile:
tar czf {{path/to/target.tar.gz}} {{[-C|--directory]}} {{path/to/directory}} .
[c]reate a g[z]ipped (compressed) archive from a directory using relative paths:
