mirror of
https://github.com/alexbelgium/hassio-addons.git
synced 2026-01-11 02:11:01 +01:00
49 lines
1.1 KiB
JSON
49 lines
1.1 KiB
JSON
{
|
|
"barch": [
|
|
"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"
|
|
} |