mirror of
https://github.com/YunoHost-Apps/django-for-runners_ynh.git
synced 2024-09-03 18:26:16 +02:00
179765f117
https://github.com/jedie/cookiecutter_templates/#base-django-yunohost-app migrated from Poetry to pip-tools and to manifest v2 Apply these changes here.
42 lines
1.3 KiB
TOML
42 lines
1.3 KiB
TOML
# https://yunohost.org/en/packaging_config_panels
|
|
# https://github.com/YunoHost/example_ynh/blob/master/config_panel.toml.example
|
|
|
|
version = "1.0"
|
|
|
|
[main]
|
|
name.en = "Main configuration"
|
|
name.fr = "Configuration principale"
|
|
services = ["__APP__"]
|
|
|
|
[main.config]
|
|
name = "Configuration Options"
|
|
|
|
[main.config.default_from_email]
|
|
ask = "from email"
|
|
type = "email"
|
|
help = "Default email address to use for various automated emails."
|
|
#
|
|
# 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"
|
|
|
|
[main.config.admin_email]
|
|
ask = "ADMIN email"
|
|
type = "email"
|
|
help = "EMail address for error emails."
|
|
bind = "admin_email:/home/yunohost.app/__APP__/settings.py"
|
|
|
|
[main.config.debug_enabled]
|
|
ask = "DEBUG mode"
|
|
type = "boolean"
|
|
yes = "1"
|
|
no = "0"
|
|
help = "Should be never enabled in production!"
|
|
bind = "debug_enabled:/home/yunohost.app/__APP__/settings.py"
|
|
|
|
[main.config.log_level]
|
|
type = "string"
|
|
ask = "Log Level"
|
|
choices = ["DEBUG", "INFO", "WARNING", "ERROR", "CRITICAL"]
|
|
default = "WARNING"
|
|
bind = "log_level:/home/yunohost.app/__APP__/settings.py"
|