view sat/plugins/plugin_app_manager_docker/sat_app_weblate.yaml @ 3914:4cb38c8312a1

plugin XEP-0384, xml_tools: avoid `getItems` timeout + fix empty node crash + parsing: - use `max_items` in `getItems` calls for bundles, as otherwise some pubsub service may return full nodes, which may be huge is `max_items=1` is not set on the node, possibly resulting in timeouts. - the plugin was crashing when TWOMEMO devices list node has no items at all. This is not the case anymore. - a naive parsing method has been implemented in `xml_tools` to replace the serialisation/deserialisation method. This should be more efficient and will avoid annoying `ns0:` prefixes in XML logs.
author Goffi <goffi@goffi.org>
date Sat, 24 Sep 2022 16:37:46 +0200
parents a240748ed686
children
line wrap: on
line source

type: docker-compose
prepare:
  git: https://github.com/WeblateOrg/docker-compose.git
files:
  settings-override.py:
    content: |
      USE_X_FORWARDED_HOST = True
override:
  version: "3"
  services:
    weblate:
      ports:
        - "8080"
      environment:
        WEBLATE_DEBUG: 0
        WEBLATE_URL_PREFIX: !sat_param [url_prefix, /weblate]
        WEBLATE_EMAIL_HOST: !sat_conf ["", "email_server"]
        WEBLATE_EMAIL_HOST_USER: !sat_conf ["", "email_username"]
        WEBLATE_EMAIL_HOST_PASSWORD: !sat_conf ["", "email_password"]
        WEBLATE_SERVER_EMAIL: !sat_conf ["", "email_from", "weblate@example.com"]
        WEBLATE_DEFAULT_FROM_EMAIL: !sat_conf ["", "email_from", "weblate@example.com"]
        WEBLATE_SITE_DOMAIN: !sat_conf ["", "public_url"]
        WEBLATE_ADMIN_PASSWORD: !sat_generate_pwd
        WEBLATE_ADMIN_EMAIL: !sat_conf ["", "email_admins_list", "", "first"]
        WEBLATE_ENABLE_HTTPS: !sat_conf ["", "weblate_enable_https", "1"]
      volumes:
        - ./settings-override.py:/app/data/settings-override.py:ro
expose:
  url_prefix: [override, services, weblate, environment, WEBLATE_URL_PREFIX]
  front_url: !sat_param [front_url, /translate]
  web_label: Translate
  ports:
    web:
      service: weblate
      private: 8080
  passwords:
    admin: [override, services, weblate, environment, WEBLATE_ADMIN_PASSWORD]