comparison libervia/backend/plugins/plugin_app_manager_docker/libervia_app_weblate.yaml @ 4247:4aa62767f501

plugin app manager: various improvements: - Generated password must now be named and are stored, so they are re-used on following restarts. Password size can now be specified. - New `not` filter for `!libervia_param` to inverse a boolean value. - Former `front_url` field has been renamed to `web_url_path` as it is the URL path used for web frontend. All Web frontend related field are prefixed with `web_`. - `front_url` is now used to specify a whole front URL (notably useful if an app uses its own domain). A list can be used to retrieve a key, like for `url_prefix`, and `https` scheme is added if no scheme is specified. - An abstract class is now used for App Managers. - Last application start time is stored in persistent data.
author Goffi <goffi@goffi.org>
date Fri, 31 May 2024 11:08:14 +0200
parents c93b02000ae4
children 32e49c389bfd
comparison
equal deleted inserted replaced
4246:5eb13251fd75 4247:4aa62767f501
18 WEBLATE_EMAIL_HOST_USER: !libervia_conf ["", "email_username"] 18 WEBLATE_EMAIL_HOST_USER: !libervia_conf ["", "email_username"]
19 WEBLATE_EMAIL_HOST_PASSWORD: !libervia_conf ["", "email_password"] 19 WEBLATE_EMAIL_HOST_PASSWORD: !libervia_conf ["", "email_password"]
20 WEBLATE_SERVER_EMAIL: !libervia_conf ["", "email_from", "weblate@example.com"] 20 WEBLATE_SERVER_EMAIL: !libervia_conf ["", "email_from", "weblate@example.com"]
21 WEBLATE_DEFAULT_FROM_EMAIL: !libervia_conf ["", "email_from", "weblate@example.com"] 21 WEBLATE_DEFAULT_FROM_EMAIL: !libervia_conf ["", "email_from", "weblate@example.com"]
22 WEBLATE_SITE_DOMAIN: !libervia_conf ["", "public_url"] 22 WEBLATE_SITE_DOMAIN: !libervia_conf ["", "public_url"]
23 WEBLATE_ADMIN_PASSWORD: !libervia_generate_pwd 23 WEBLATE_ADMIN_PASSWORD: !libervia_generate_pwd {name: admin}
24 WEBLATE_ADMIN_EMAIL: !libervia_conf ["", "email_admins_list", "", "first"] 24 WEBLATE_ADMIN_EMAIL: !libervia_conf ["", "email_admins_list", "", "first"]
25 WEBLATE_ENABLE_HTTPS: !libervia_conf ["", "weblate_enable_https", "1"] 25 WEBLATE_ENABLE_HTTPS: !libervia_conf ["", "weblate_enable_https", "1"]
26 volumes: 26 volumes:
27 - ./settings-override.py:/app/data/settings-override.py:ro 27 - ./settings-override.py:/app/data/settings-override.py:ro
28 expose: 28 expose:
29 url_prefix: [override, services, weblate, environment, WEBLATE_URL_PREFIX] 29 url_prefix: [override, services, weblate, environment, WEBLATE_URL_PREFIX]
30 front_url: !libervia_param [front_url, /translate] 30 web_url_path: !libervia_param [front_url_path, /translate]
31 web_label: Translate 31 web_label: Translate
32 ports: 32 ports:
33 web: 33 web:
34 service: weblate 34 service: weblate
35 private: 8080 35 private: 8080