mirror of
https://github.com/YunoHost-Apps/libretranslate_ynh.git
synced 2024-09-03 19:36:00 +02:00
Refactor to harmonize with other apps in catalog
This commit is contained in:
parent
0fda158546
commit
15cfb34986
6 changed files with 17 additions and 15 deletions
|
@ -6,10 +6,15 @@ After=network.target
|
||||||
[Service]
|
[Service]
|
||||||
User=__APP__
|
User=__APP__
|
||||||
Group=__APP__
|
Group=__APP__
|
||||||
|
|
||||||
|
StandardOutput=append:/var/log/__APP__/__APP__.log
|
||||||
|
StandardError=inherit
|
||||||
|
SyslogIdentifier=__APP__
|
||||||
|
|
||||||
Restart=always
|
Restart=always
|
||||||
Type=simple
|
Type=simple
|
||||||
WorkingDirectory=__INSTALL_DIR__
|
WorkingDirectory=__INSTALL_DIR__
|
||||||
ExecStart=/usr/local/bin/pipenv run python3 __INSTALL_DIR__/.venv/bin/libretranslate --host 127.0.0.1 --port __PORT__ --load-only en,fr --frontend-language-target en
|
ExecStart=__INSTALL_DIR__/venv/bin/libretranslate --host 127.0.0.1 --port __PORT__ --load-only en,fr --frontend-language-target en
|
||||||
|
|
||||||
# Sandboxing options to harden security
|
# Sandboxing options to harden security
|
||||||
# Depending on specificities of your service/app, you may need to tweak these
|
# Depending on specificities of your service/app, you may need to tweak these
|
||||||
|
|
|
@ -5,7 +5,7 @@ name = "LibreTranslate"
|
||||||
description.en = "Open Source Machine Translation API"
|
description.en = "Open Source Machine Translation API"
|
||||||
description.fr = "API de traduction automatique Open Source"
|
description.fr = "API de traduction automatique Open Source"
|
||||||
|
|
||||||
version = "1.3.11~ynh1"
|
version = "1.3.11~ynh2"
|
||||||
|
|
||||||
maintainers = [""]
|
maintainers = [""]
|
||||||
|
|
||||||
|
|
|
@ -21,17 +21,15 @@ chown -R $app:www-data "$install_dir"
|
||||||
#=================================================
|
#=================================================
|
||||||
# SPECIFIC SETUP
|
# SPECIFIC SETUP
|
||||||
#=================================================
|
#=================================================
|
||||||
ynh_script_progression --message="Installing dependencies..." --weight=2
|
|
||||||
|
|
||||||
ynh_exec_warn_less python3 -m pip install pipenv
|
|
||||||
|
|
||||||
ynh_script_progression --message="Installing LibreTranslate..." --weight=2
|
ynh_script_progression --message="Installing LibreTranslate..." --weight=2
|
||||||
|
|
||||||
pushd $install_dir
|
pushd $install_dir
|
||||||
mkdir -p .venv
|
python3 -m venv $install_dir/venv
|
||||||
PIPENV_VENV_IN_PROJECT="enabled" PIPENV_SKIP_LOCK=true ynh_exec_warn_less python3 -m pipenv install libretranslate==$libretranslate_version 2>&1
|
source $install_dir/venv/bin/activate
|
||||||
|
ynh_exec_warn_less pip install libretranslate==$libretranslate_version
|
||||||
popd
|
popd
|
||||||
|
|
||||||
|
|
||||||
#=================================================
|
#=================================================
|
||||||
# SYSTEM CONFIGURATION
|
# SYSTEM CONFIGURATION
|
||||||
#=================================================
|
#=================================================
|
||||||
|
|
|
@ -28,8 +28,6 @@ chown -R $app:www-data "$install_dir"
|
||||||
#=================================================
|
#=================================================
|
||||||
ynh_script_progression --message="Restoring system configurations related to $app..." --weight=5
|
ynh_script_progression --message="Restoring system configurations related to $app..." --weight=5
|
||||||
|
|
||||||
ynh_exec_warn_less python3 -m pip install pipenv
|
|
||||||
|
|
||||||
ynh_restore_file --origin_path="/etc/nginx/conf.d/$domain.d/$app.conf"
|
ynh_restore_file --origin_path="/etc/nginx/conf.d/$domain.d/$app.conf"
|
||||||
|
|
||||||
ynh_restore_file --origin_path="/etc/systemd/system/$app.service"
|
ynh_restore_file --origin_path="/etc/systemd/system/$app.service"
|
||||||
|
|
|
@ -38,11 +38,10 @@ chown -R $app:www-data "$install_dir"
|
||||||
#=================================================
|
#=================================================
|
||||||
ynh_script_progression --message="Installing LibreTranslate..." --weight=2
|
ynh_script_progression --message="Installing LibreTranslate..." --weight=2
|
||||||
|
|
||||||
ynh_exec_warn_less python3 -m pip install pipenv
|
|
||||||
|
|
||||||
pushd $install_dir
|
pushd $install_dir
|
||||||
mkdir -p .venv
|
python3 -m venv $install_dir/venv
|
||||||
PIPENV_VENV_IN_PROJECT="enabled" PIPENV_SKIP_LOCK=true ynh_exec_warn_less python3 -m pipenv install libretranslate==$libretranslate_version 2>&1
|
source $install_dir/venv/bin/activate
|
||||||
|
ynh_exec_warn_less pip install libretranslate==$libretranslate_version
|
||||||
popd
|
popd
|
||||||
|
|
||||||
#=================================================
|
#=================================================
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
test_format = 1.0
|
test_format = 1.0
|
||||||
|
|
||||||
[default]
|
[default]
|
||||||
|
|
||||||
|
test_upgrade_from.0fda158.name = "1.3.11~ynh1"
|
Loading…
Add table
Reference in a new issue