2024-03-31 23:46:55 +02:00
|
|
|
#:schema https://raw.githubusercontent.com/YunoHost/apps/master/schemas/manifest.v2.schema.json
|
|
|
|
|
2024-03-26 06:53:38 +01:00
|
|
|
packaging_format = 2
|
|
|
|
|
|
|
|
id = "immich"
|
|
|
|
name = "Immich"
|
|
|
|
description.en = "Photo and video backup solution directly from your mobile phone"
|
|
|
|
description.fr = "Sauvegarde de photos et de vidéos directement depuis votre mobile"
|
|
|
|
|
2024-07-27 03:37:43 +02:00
|
|
|
version = "1.110.0~ynh1"
|
2024-03-26 06:53:38 +01:00
|
|
|
|
|
|
|
maintainers = ["ewilly"]
|
|
|
|
|
|
|
|
[upstream]
|
2024-03-29 13:42:58 +01:00
|
|
|
license = "AGPL-3.0-or-later"
|
2024-03-31 23:46:55 +02:00
|
|
|
website = "https://immich.app"
|
2024-03-26 06:53:38 +01:00
|
|
|
admindoc = "https://github.com/immich-app/immich#getting-started"
|
|
|
|
userdoc = "https://github.com/immich-app/immich#getting-started"
|
|
|
|
code = "https://github.com/immich-app/immich"
|
|
|
|
|
|
|
|
[integration]
|
|
|
|
yunohost = ">= 11.2"
|
|
|
|
architectures = ["arm64", "amd64"]
|
|
|
|
multi_instance = false
|
|
|
|
|
|
|
|
ldap = false
|
|
|
|
sso = false
|
|
|
|
|
|
|
|
disk = "2G"
|
|
|
|
ram.build = "800M"
|
|
|
|
ram.runtime = "500M"
|
|
|
|
|
|
|
|
[install]
|
|
|
|
[install.domain]
|
|
|
|
type = "domain"
|
|
|
|
|
|
|
|
[install.init_main_permission]
|
|
|
|
type = "group"
|
|
|
|
default = "visitors"
|
|
|
|
|
|
|
|
[resources]
|
|
|
|
[resources.sources]
|
|
|
|
|
|
|
|
[resources.sources.main]
|
2024-07-27 03:37:43 +02:00
|
|
|
url = "https://github.com/immich-app/immich/archive/refs/tags/v1.110.0.tar.gz"
|
|
|
|
sha256 = "aceddfef934fcbea8c4e8c8069595bd2806bd758498f94be15c99ffbc2721ad3"
|
2024-03-26 06:53:38 +01:00
|
|
|
|
|
|
|
autoupdate.strategy = "latest_github_release"
|
|
|
|
|
|
|
|
[resources.ports]
|
|
|
|
main.default = 3001
|
|
|
|
machinelearning.default = 3003
|
|
|
|
|
|
|
|
[resources.system_user]
|
|
|
|
|
|
|
|
[resources.install_dir]
|
|
|
|
|
|
|
|
[resources.data_dir]
|
|
|
|
|
|
|
|
[resources.permissions]
|
|
|
|
main.url = "/"
|
|
|
|
admin.url = "/admin"
|
|
|
|
admin.allowed= "admins"
|
|
|
|
api.url = "/api"
|
|
|
|
api.allowed = "visitors"
|
|
|
|
api.show_tile = false
|
|
|
|
api.protected = true
|
|
|
|
|
|
|
|
[resources.apt]
|
2024-03-31 23:46:55 +02:00
|
|
|
packages = [
|
|
|
|
"python3-venv",
|
|
|
|
"python3-dev",
|
|
|
|
"ffmpeg",
|
|
|
|
"postgresql",
|
|
|
|
"wget",
|
|
|
|
"build-essential",
|
|
|
|
"libreadline-dev",
|
|
|
|
"libncursesw5-dev",
|
|
|
|
"libssl-dev",
|
|
|
|
"libsqlite3-dev",
|
|
|
|
"tk-dev",
|
|
|
|
"libgdbm-dev",
|
|
|
|
"libc6-dev",
|
|
|
|
"libbz2-dev",
|
|
|
|
"libffi-dev",
|
|
|
|
"zlib1g-dev",
|
2024-07-12 09:12:53 +02:00
|
|
|
"unzip",
|
|
|
|
"uuid-runtime",
|
|
|
|
"autoconf",
|
|
|
|
"jq",
|
|
|
|
"perl",
|
|
|
|
"libnet-ssleay-perl",
|
|
|
|
"libio-socket-ssl-perl",
|
|
|
|
"libcapture-tiny-perl",
|
|
|
|
"libfile-which-perl",
|
|
|
|
"libfile-chdir-perl",
|
|
|
|
"libpkgconfig-perl",
|
|
|
|
"libffi-checklib-perl",
|
|
|
|
"libtest-warnings-perl",
|
|
|
|
"libtest-fatal-perl",
|
|
|
|
"libtest-needs-perl",
|
|
|
|
"libtest2-suite-perl",
|
|
|
|
"libsort-versions-perl",
|
|
|
|
"libpath-tiny-perl",
|
|
|
|
"libtry-tiny-perl",
|
|
|
|
"libterm-table-perl",
|
|
|
|
"libany-uri-escape-perl",
|
|
|
|
"libmojolicious-perl",
|
|
|
|
"libfile-slurper-perl",
|
2024-07-28 10:29:00 +02:00
|
|
|
"liblcms2-2",
|
|
|
|
"libllvm16",
|
|
|
|
"libllvm13",,
|
|
|
|
"redis-server"
|
2024-03-31 23:46:55 +02:00
|
|
|
]
|
|
|
|
|
|
|
|
[resources.apt.extras.postgresql]
|
2024-05-12 18:47:25 +02:00
|
|
|
repo = "deb https://apt.postgresql.org/pub/repos/apt __YNH_DEBIAN_VERSION__-pgdg main 16"
|
2024-03-31 23:46:55 +02:00
|
|
|
key = "https://www.postgresql.org/media/keys/ACCC4CF8.asc"
|
|
|
|
packages = [
|
2024-07-28 10:29:00 +02:00
|
|
|
"libpq5",
|
|
|
|
"libpq-dev",
|
|
|
|
"postgresql-16",
|
|
|
|
"postgresql-16-pgvector",
|
|
|
|
"postgresql-client-16",
|
|
|
|
"postgresql-common",
|
|
|
|
"postgresql-client-common"
|
|
|
|
]
|
|
|
|
|
|
|
|
[resources.apt.extras.jellyfin-ffmpeg]
|
|
|
|
repo = "deb [arch=__YNH_ARCH__] https://repo.jellyfin.org/debian __YNH_DEBIAN_VERSION__ main"
|
|
|
|
key = "https://repo.jellyfin.org/jellyfin_team.gpg.key"
|
|
|
|
packages = [
|
|
|
|
jellyfin-ffmpeg6
|
2024-03-31 23:46:55 +02:00
|
|
|
]
|
2024-03-26 21:04:14 +01:00
|
|
|
|
|
|
|
[resources.database]
|
|
|
|
type = "postgresql"
|