1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/kimai2_ynh.git synced 2024-09-03 19:26:26 +02:00
This commit is contained in:
Éric Gaspar 2023-11-02 21:39:57 +01:00
parent af59538794
commit 2e7d010bab
3 changed files with 6 additions and 6 deletions

View file

@ -7,7 +7,7 @@ description.fr = "Application multi-utilisateurs de suivi du temps compatible av
description.de = "Eine web-basierte Mehrbenutzer-Zeiterfassung mit Rechnungsdruck mit Unterstützung für mobile Endgeräte" description.de = "Eine web-basierte Mehrbenutzer-Zeiterfassung mit Rechnungsdruck mit Unterstützung für mobile Endgeräte"
description.cs = "Víceuživatelská webová aplikace pro sledování času s podporou mobilních zařízení" description.cs = "Víceuživatelská webová aplikace pro sledování času s podporou mobilních zařízení"
version = "2.0.33~ynh1" version = "2.2.1~ynh1"
maintainers = [""] maintainers = [""]
@ -52,8 +52,8 @@ ram.runtime = "50M"
[resources.sources] [resources.sources]
[resources.sources.main] [resources.sources.main]
url = "https://github.com/kevinpapst/kimai2/archive/2.0.33.tar.gz" url = "https://github.com/kevinpapst/kimai2/archive/2.2.1.tar.gz"
sha256 = "9cad2555eb115711e100ca129c8152f3ec19ebfde6334a1ec5b7b2009b011959" sha256 = "0603b9ba128a8580ece863d72941dc084c6e76b7e71860b1481449bbbafd0ba1"
autoupdate.strategy = "latest_github_tag" autoupdate.strategy = "latest_github_tag"
[resources.system_user] [resources.system_user]

View file

@ -22,7 +22,7 @@ ynh_change_url_nginx_config
ynh_script_progression --message="Adding a configuration file..." --weight=1 ynh_script_progression --message="Adding a configuration file..." --weight=1
# Configure environement # Configure environement
ynh_add_config --template="../conf/.env" --destination="$install_dir/.env" ynh_add_config --template=".env" --destination="$install_dir/.env"
chmod 400 "$install_dir/.env" chmod 400 "$install_dir/.env"
chown $app:$app "$install_dir/.env" chown $app:$app "$install_dir/.env"

View file

@ -77,13 +77,13 @@ else
registration="false" registration="false"
fi fi
ynh_add_config --template="../conf/local.yaml" --destination="$install_dir/config/packages/local.yaml" ynh_add_config --template="local.yaml" --destination="$install_dir/config/packages/local.yaml"
chmod 400 "$install_dir/config/packages/local.yaml" chmod 400 "$install_dir/config/packages/local.yaml"
chown $app:$app "$install_dir/config/packages/local.yaml" chown $app:$app "$install_dir/config/packages/local.yaml"
# Configure environement # Configure environement
ynh_add_config --template="../conf/.env" --destination="$install_dir/.env" ynh_add_config --template=".env" --destination="$install_dir/.env"
chmod 400 "$install_dir/.env" chmod 400 "$install_dir/.env"
chown $app:$app "$install_dir/.env" chown $app:$app "$install_dir/.env"