mirror of
https://github.com/YunoHost-Apps/immich_ynh.git
synced 2024-09-03 20:36:24 +02:00
Merge pull request #64 from YunoHost-Apps/master-promotion
Upgrade master from testing
This commit is contained in:
commit
21e414ddd4
10 changed files with 12 additions and 8 deletions
|
@ -24,7 +24,7 @@ Self-hosted photo and video management solution.
|
||||||
- Easy-to-use and friendly interface ;
|
- Easy-to-use and friendly interface ;
|
||||||
|
|
||||||
|
|
||||||
**Shipped version:** 1.108.0~ynh1
|
**Shipped version:** 1.108.0~ynh2
|
||||||
|
|
||||||
## Screenshots
|
## Screenshots
|
||||||
|
|
||||||
|
|
|
@ -24,7 +24,7 @@ Self-hosted photo and video management solution.
|
||||||
- Easy-to-use and friendly interface ;
|
- Easy-to-use and friendly interface ;
|
||||||
|
|
||||||
|
|
||||||
**Versión actual:** 1.108.0~ynh1
|
**Versión actual:** 1.108.0~ynh2
|
||||||
|
|
||||||
## Capturas
|
## Capturas
|
||||||
|
|
||||||
|
|
|
@ -24,7 +24,7 @@ Self-hosted photo and video management solution.
|
||||||
- Easy-to-use and friendly interface ;
|
- Easy-to-use and friendly interface ;
|
||||||
|
|
||||||
|
|
||||||
**Paketatutako bertsioa:** 1.108.0~ynh1
|
**Paketatutako bertsioa:** 1.108.0~ynh2
|
||||||
|
|
||||||
## Pantaila-argazkiak
|
## Pantaila-argazkiak
|
||||||
|
|
||||||
|
|
|
@ -24,7 +24,7 @@ Solution d'autohébergement pour a gestion de vos photos et vidéos.
|
||||||
- Interface conviviale et egronomique ;
|
- Interface conviviale et egronomique ;
|
||||||
|
|
||||||
|
|
||||||
**Version incluse :** 1.108.0~ynh1
|
**Version incluse :** 1.108.0~ynh2
|
||||||
|
|
||||||
## Captures d’écran
|
## Captures d’écran
|
||||||
|
|
||||||
|
|
|
@ -24,7 +24,7 @@ Self-hosted photo and video management solution.
|
||||||
- Easy-to-use and friendly interface ;
|
- Easy-to-use and friendly interface ;
|
||||||
|
|
||||||
|
|
||||||
**Versión proporcionada:** 1.108.0~ynh1
|
**Versión proporcionada:** 1.108.0~ynh2
|
||||||
|
|
||||||
## Capturas de pantalla
|
## Capturas de pantalla
|
||||||
|
|
||||||
|
|
|
@ -24,7 +24,7 @@ Self-hosted photo and video management solution.
|
||||||
- Easy-to-use and friendly interface ;
|
- Easy-to-use and friendly interface ;
|
||||||
|
|
||||||
|
|
||||||
**分发版本:** 1.108.0~ynh1
|
**分发版本:** 1.108.0~ynh2
|
||||||
|
|
||||||
## 截图
|
## 截图
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1,6 @@
|
||||||
|
## General
|
||||||
|
IMMICH_VERSION=release
|
||||||
|
|
||||||
## Ports
|
## Ports
|
||||||
IMMICH_HOST=127.0.0.1
|
IMMICH_HOST=127.0.0.1
|
||||||
IMMICH_PORT=__PORT_MACHINELEARNING__
|
IMMICH_PORT=__PORT_MACHINELEARNING__
|
||||||
|
|
|
@ -2,6 +2,7 @@
|
||||||
NODE_ENV=production
|
NODE_ENV=production
|
||||||
IMMICH_MEDIA_LOCATION=__DATA_DIR__
|
IMMICH_MEDIA_LOCATION=__DATA_DIR__
|
||||||
IMMICH_WEB_ROOT=__INSTALL_DIR__/app/www
|
IMMICH_WEB_ROOT=__INSTALL_DIR__/app/www
|
||||||
|
IMMICH_VERSION=release
|
||||||
|
|
||||||
## Ports
|
## Ports
|
||||||
IMMICH_HOST=127.0.0.1
|
IMMICH_HOST=127.0.0.1
|
||||||
|
|
|
@ -7,7 +7,7 @@ name = "Immich"
|
||||||
description.en = "Photo and video backup solution directly from your mobile phone"
|
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"
|
description.fr = "Sauvegarde de photos et de vidéos directement depuis votre mobile"
|
||||||
|
|
||||||
version = "1.108.0~ynh1"
|
version = "1.108.0~ynh2"
|
||||||
|
|
||||||
maintainers = ["ewilly"]
|
maintainers = ["ewilly"]
|
||||||
|
|
||||||
|
|
|
@ -39,7 +39,7 @@ ynh_script_progression --message="Creating a PostgreSQL database..." --weight=1
|
||||||
|
|
||||||
db_pwd=$(ynh_string_random)
|
db_pwd=$(ynh_string_random)
|
||||||
myynh_create_psql_db
|
myynh_create_psql_db
|
||||||
db_port=$(myynh_execute_psql_as_root --sql="\conninfo" | cut -d'"' -f8)
|
db_port=$(myynh_execute_psql_as_root --sql="\conninfo" | awk -F '"' '{ print $(NF-1) }')
|
||||||
ynh_app_setting_set --app="$app" --key=psql_pwd --value="$db_pwd"
|
ynh_app_setting_set --app="$app" --key=psql_pwd --value="$db_pwd"
|
||||||
ynh_app_setting_set --app="$app" --key=psql_version --value="$(postgresql_version)"
|
ynh_app_setting_set --app="$app" --key=psql_version --value="$(postgresql_version)"
|
||||||
ynh_app_setting_set --app="$app" --key=psql_port --value="$db_port"
|
ynh_app_setting_set --app="$app" --key=psql_port --value="$db_port"
|
||||||
|
|
Loading…
Reference in a new issue