mirror of
https://github.com/YunoHost-Apps/pyinventory_ynh.git
synced 2024-09-03 20:16:09 +02:00
Remove "website" and use type = "boolean" for "debug_enabled"
This commit is contained in:
parent
917c577bd9
commit
36c63e0479
1 changed files with 5 additions and 4 deletions
|
@ -13,12 +13,12 @@ maintainers = ["Jens Diemer"]
|
||||||
[upstream]
|
[upstream]
|
||||||
# https://yunohost.org/en/packaging_manifest#upstream-section
|
# https://yunohost.org/en/packaging_manifest#upstream-section
|
||||||
license = "GPL-3.0-or-later"
|
license = "GPL-3.0-or-later"
|
||||||
website = "https://github.com/YunoHost-Apps/pyinventory_ynh"
|
|
||||||
admindoc = "https://github.com/YunoHost-Apps/pyinventory_ynh"
|
admindoc = "https://github.com/YunoHost-Apps/pyinventory_ynh"
|
||||||
userdoc = "https://github.com/jedie/PyInventory"
|
userdoc = "https://github.com/jedie/PyInventory"
|
||||||
code = "https://github.com/YunoHost-Apps/pyinventory_ynh"
|
code = "https://github.com/YunoHost-Apps/pyinventory_ynh"
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
[integration]
|
[integration]
|
||||||
# https://yunohost.org/en/packaging_manifest#integration-section
|
# https://yunohost.org/en/packaging_manifest#integration-section
|
||||||
yunohost = ">=11"
|
yunohost = ">=11"
|
||||||
|
@ -31,7 +31,10 @@ ram.build = "50M" # **estimate** minimum ram requirement. e.g. 50M, 400M, 1G, ..
|
||||||
ram.runtime = "50M" # **estimate** minimum ram requirement. e.g. 50M, 400M, 1G, ...
|
ram.runtime = "50M" # **estimate** minimum ram requirement. e.g. 50M, 400M, 1G, ...
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
[install]
|
[install]
|
||||||
|
# https://yunohost.org/en/packaging_manifest#install-questions
|
||||||
|
|
||||||
[install.domain]
|
[install.domain]
|
||||||
# this is a generic question - ask strings are automatically handled by Yunohost's core
|
# this is a generic question - ask strings are automatically handled by Yunohost's core
|
||||||
type = "domain"
|
type = "domain"
|
||||||
|
@ -63,9 +66,7 @@ ram.runtime = "50M" # **estimate** minimum ram requirement. e.g. 50M, 400M, 1G,
|
||||||
|
|
||||||
[install.debug_enabled] # __DEBUG_ENABLED__
|
[install.debug_enabled] # __DEBUG_ENABLED__
|
||||||
ask.en = "Should be never enabled in production!"
|
ask.en = "Should be never enabled in production!"
|
||||||
type = "select"
|
type = "boolean"
|
||||||
choices = ["YES", "NO"]
|
|
||||||
default = "NO"
|
|
||||||
|
|
||||||
[install.log_level] # __LOG_LEVEL__
|
[install.log_level] # __LOG_LEVEL__
|
||||||
ask.en = "Logging level"
|
ask.en = "Logging level"
|
||||||
|
|
Loading…
Reference in a new issue