mirror of
https://github.com/YunoHost-Apps/pyinventory_ynh.git
synced 2024-09-03 20:16:09 +02:00
f5c847b9ad
https://github.com/jedie/manageprojects and https://github.com/jedie/cookiecutter_templates/ Also: * update requirements * Remove Python 3.7 and 3.8 support * Add Python 3.11 to test matrix
38 lines
1.1 KiB
TOML
38 lines
1.1 KiB
TOML
# 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."
|
|
bind = "default_from_email:__FINALPATH__/settings.py"
|
|
|
|
[main.config.admin_email]
|
|
ask = "ADMIN email"
|
|
type = "email"
|
|
help = "EMail address for error emails."
|
|
bind = "admin_email:__FINALPATH__/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:__FINALPATH__/settings.py"
|
|
|
|
[main.config.log_level]
|
|
type = "string"
|
|
ask = "Log Level"
|
|
choices = ["DEBUG", "INFO", "WARNING", "ERROR", "CRITICAL"]
|
|
default = "WARNING"
|
|
bind = "log_level:__FINALPATH__/settings.py"
|