mirror of
https://github.com/alexbelgium/hassio-addons.git
synced 2026-01-10 09:51:02 +01:00
40 lines
1007 B
JSON
40 lines
1007 B
JSON
{
|
|
"arch": ["aarch64", "amd64", "armv7", "armhf"],
|
|
"boot": "auto",
|
|
"description": "recipe manager",
|
|
"environment": {
|
|
"DB_ENGINE": "django.db.backends.sqlite3",
|
|
"POSTGRES_DB": "/config/addons_config/tandoor_recipes/recipes.db",
|
|
"DEBUG": "0"
|
|
},
|
|
"map": ["config:rw"],
|
|
"name": "Tandoor recipes",
|
|
"options": {
|
|
"SECRET_KEY": "YOUR_SECRET_KEY",
|
|
"DB_TYPE": "sqlite",
|
|
"ALLOWED_HOSTS": ""
|
|
},
|
|
"ports": {
|
|
"8080/tcp": "9928"
|
|
},
|
|
"ports_description": {
|
|
"8080/tcp": "Web interface"
|
|
},
|
|
"services": ["mysql:want"],
|
|
"schema": {
|
|
"SECRET_KEY": "str",
|
|
"DB_TYPE": "list(sqlite|postgresql_external)",
|
|
"ALLOWED_HOSTS": "str?",
|
|
"POSTGRES_HOST": "str?",
|
|
"POSTGRES_PORT": "str?",
|
|
"POSTGRES_USER": "str?",
|
|
"POSTGRES_PASSWORD": "str?",
|
|
"POSTGRES_DB": "str?"
|
|
},
|
|
"slug": "tandoor_recipes",
|
|
"upstream": "1.0.4",
|
|
"url": "https://github.com/alexbelgium/hassio-addons",
|
|
"version": "1.0.4-7",
|
|
"webui": "[PROTO:ssl]://[HOST]:[PORT:8080]"
|
|
}
|