view sat/plugins/plugin_app_manager_docker/sat_app_weblate.yaml @ 3403:404d4b29de52

plugin file, XEP-0234: registering is now done by class + use of async: - instead of registering a callback, a file sending manager now register itself and must implement some well known method (`fileSend`, `canHandleFileSend`) and optionally a `name` attribute - `utils.asDeferred` is now used for callbacks, so all type of methods including coroutines can be used. - feature checking is now handled by `canHandleFileSend` method instead of simple namespace check, this allows to use a method when namespace can't be checked (this is the case when a file is sent to a bare jid with jingle)
author Goffi <goffi@goffi.org>
date Thu, 12 Nov 2020 14:53:15 +0100
parents a94cdda7d5c4
children c30b4b18d3b8
line wrap: on
line source

type: docker-compose
prepare:
  git: https://github.com/WeblateOrg/docker-compose.git
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_DEFAULT_FROM_EMAIL: !sat_conf ["", "email_from"]
        WEBLATE_SITE_DOMAIN: !sat_conf ["", "public_url"]
        WEBLATE_ADMIN_PASSWORD: !sat_generate_pwd
        WEBLATE_ADMIN_EMAIL: !sat_conf ["", "email_admins_list", "", "first"]
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]