1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/weblate_ynh.git synced 2024-10-01 13:35:04 +02:00
This commit is contained in:
Thomas 2024-01-21 12:21:47 +01:00 committed by GitHub
parent 426256b7fa
commit ba8b7468af
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 11 additions and 6 deletions

View file

@ -2,17 +2,17 @@
# https://github.com/WeblateOrg/weblate/blob/master/weblate/examples/weblate.nginx.conf
location ~ ^__PATH__/favicon.ico$ {
alias __INSTALL_DIR__/cache/static/favicon.ico;
alias __INSTALL_DIR__/data/cache/static/favicon.ico;
expires 30d;
}
location __PATH__/static/ {
alias __INSTALL_DIR__/cache/static/;
alias __INSTALL_DIR__/data/cache/static/;
expires 30d;
}
location __PATH__/media/ {
alias __INSTALL_DIR__/media/;
alias __INSTALL_DIR__/data/media/;
expires 30d;
}

View file

@ -155,13 +155,18 @@ ynh_script_progression --message="Filling up the database..." --weight=10
# the user needs to be weblate for postgresql
ynh_exec_warn_less sudo --user=$app $install_dir/venv/bin/weblate migrate --noinput
# generate static files
ynh_exec_warn_less sudo --user=$app $install_dir/venv/bin/weblate collectstatic --noinput
ynh_exec_warn_less sudo --user=$app $install_dir/venv/bin/weblate createadmin --no-color \
--password "$password" \
--username "$admin" \
--email "$admin_mail"
# generate static files
ynh_exec_warn_less sudo --user=$app $install_dir/venv/bin/weblate collectstatic --noinput
# https://docs.weblate.org/en/latest/admin/install/venv-debian.html
ynh_exec_warn_less sudo --user=$app $install_dir/venv/bin/weblate compress --noinput
# Check the configuration
# This may fail in some cases with errors, etc., but the app works and the user can fix issues later.
ynh_exec_warn_less sudo --user=$app $install_dir/venv/bin/weblate check --deploy || true

View file

@ -16,6 +16,6 @@ test_format = 1.0
# Commits to test upgrade from
# -------------------------------
test_upgrade_from.2749e7b.name = "0.5.3 - packaging v1"
test_upgrade_from.2749e7b.name = "5.3.1 - packaging v1"