Files
hassio-addons/tandoor_recipes/config.json
2022-11-27 00:24:48 +00:00

50 lines
1.1 KiB
JSON

{
"arch": [
"aarch64",
"amd64",
"armv7"
],
"codenotary": "alexandrep.github@gmail.com",
"description": "recipe manager",
"environment": {
"DB_ENGINE": "django.db.backends.sqlite3",
"DEBUG": "0",
"POSTGRES_DB": "/config/addons_config/tandoor_recipes/recipes.db",
"TRUSTED_PROXIES": "**"
},
"image": "ghcr.io/alexbelgium/tandoor_recipes-{arch}",
"map": [
"config:rw"
],
"name": "Tandoor recipes",
"options": {
"ALLOWED_HOSTS": "",
"DB_TYPE": "sqlite",
"SECRET_KEY": "YOUR_SECRET_KEY"
},
"panel_icon": "mdi:silverware-fork-knife",
"panel_title": "Tandoor Recipes",
"ports": {
"8080/tcp": 9928
},
"ports_description": {
"8080/tcp": "Web interface"
},
"schema": {
"ALLOWED_HOSTS": "str?",
"DB_TYPE": "list(sqlite|postgresql_external)",
"POSTGRES_DB": "str?",
"POSTGRES_HOST": "str?",
"POSTGRES_PASSWORD": "str?",
"POSTGRES_PORT": "str?",
"POSTGRES_USER": "str?",
"SECRET_KEY": "str"
},
"services": [
"mysql:want"
],
"slug": "tandoor_recipes",
"url": "https://github.com/alexbelgium/hassio-addons",
"version": "1.4.5"
}