added option to disable debug mode

This commit is contained in:
nough
2023-05-23 18:53:47 +01:00
committed by GitHub
parent 314ecca895
commit 6dd94f7797

View File

@@ -56,7 +56,6 @@
], ],
"environment": { "environment": {
"DB_ENGINE": "django.db.backends.sqlite3", "DB_ENGINE": "django.db.backends.sqlite3",
"DEBUG": "1",
"DISABLE_INGRESS": "true", "DISABLE_INGRESS": "true",
"POSTGRES_DB": "/config/addons_config/tandoor_recipes/recipes.db", "POSTGRES_DB": "/config/addons_config/tandoor_recipes/recipes.db",
"TRUSTED_PROXIES": "**" "TRUSTED_PROXIES": "**"
@@ -69,7 +68,8 @@
"options": { "options": {
"ALLOWED_HOSTS": "", "ALLOWED_HOSTS": "",
"DB_TYPE": "sqlite", "DB_TYPE": "sqlite",
"SECRET_KEY": "YOUR_SECRET_KEY" "SECRET_KEY": "YOUR_SECRET_KEY",
"DEBUG": "1"
}, },
"panel_icon": "mdi:silverware-fork-knife", "panel_icon": "mdi:silverware-fork-knife",
"panel_title": "Tandoor Recipes", "panel_title": "Tandoor Recipes",
@@ -87,7 +87,8 @@
"POSTGRES_PASSWORD": "str?", "POSTGRES_PASSWORD": "str?",
"POSTGRES_PORT": "str?", "POSTGRES_PORT": "str?",
"POSTGRES_USER": "str?", "POSTGRES_USER": "str?",
"SECRET_KEY": "str" "SECRET_KEY": "str",
"DEBUG": "list(1|0)"
}, },
"services": [ "services": [
"mysql:want" "mysql:want"