2024-06-17 21:12:19 +02:00
|
|
|
# https://yunohost.org/en/packaging_config_panels
|
2022-07-11 20:34:24 +02:00
|
|
|
# https://github.com/YunoHost/example_ynh/blob/master/config_panel.toml.example
|
|
|
|
|
|
|
|
version = "1.0"
|
|
|
|
|
|
|
|
[main]
|
2022-10-04 10:20:28 +02:00
|
|
|
name.en = "Main configuration"
|
|
|
|
name.fr = "Configuration principale"
|
2022-08-16 08:59:39 +02:00
|
|
|
services = ["__APP__"]
|
2022-07-11 20:34:24 +02:00
|
|
|
|
2022-08-16 08:59:39 +02:00
|
|
|
[main.config]
|
|
|
|
name = "Configuration Options"
|
2022-07-11 20:34:24 +02:00
|
|
|
|
2022-08-16 08:59:39 +02:00
|
|
|
[main.config.default_from_email]
|
|
|
|
ask = "from email"
|
2022-10-04 10:20:28 +02:00
|
|
|
type = "email"
|
2022-08-16 08:59:39 +02:00
|
|
|
help = "Default email address to use for various automated emails."
|
2024-06-17 21:12:19 +02:00
|
|
|
#
|
|
|
|
# We can't use "__DATA_DIR__" in bind value, because of this bug:
|
|
|
|
# https://github.com/YunoHost/issues/issues/2283
|
|
|
|
bind = "default_from_email:/home/yunohost.app/__APP__/settings.py"
|
2022-07-11 20:34:24 +02:00
|
|
|
|
2022-08-16 08:59:39 +02:00
|
|
|
[main.config.admin_email]
|
|
|
|
ask = "ADMIN email"
|
2022-10-04 10:20:28 +02:00
|
|
|
type = "email"
|
2022-08-16 08:59:39 +02:00
|
|
|
help = "EMail address for error emails."
|
2024-06-17 21:12:19 +02:00
|
|
|
bind = "admin_email:/home/yunohost.app/__APP__/settings.py"
|
2022-08-16 08:59:39 +02:00
|
|
|
|
|
|
|
[main.config.debug_enabled]
|
|
|
|
ask = "DEBUG mode"
|
2022-07-11 20:34:24 +02:00
|
|
|
type = "boolean"
|
2022-08-16 08:59:39 +02:00
|
|
|
yes = "1"
|
|
|
|
no = "0"
|
|
|
|
help = "Should be never enabled in production!"
|
2024-06-17 21:12:19 +02:00
|
|
|
bind = "debug_enabled:/home/yunohost.app/__APP__/settings.py"
|
2022-08-16 08:59:39 +02:00
|
|
|
|
|
|
|
[main.config.log_level]
|
|
|
|
type = "string"
|
|
|
|
ask = "Log Level"
|
|
|
|
choices = ["DEBUG", "INFO", "WARNING", "ERROR", "CRITICAL"]
|
|
|
|
default = "WARNING"
|
2024-06-17 21:12:19 +02:00
|
|
|
bind = "log_level:/home/yunohost.app/__APP__/settings.py"
|