forked from alexbelgium/hassio-addons
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.json
50 lines (50 loc) · 1.16 KB
/
config.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"arch": [
"aarch64",
"amd64",
"armv7"
],
"codenotary": "[email protected]",
"description": "recipe manager",
"environment": {
"DB_ENGINE": "django.db.backends.sqlite3",
"DEBUG": "1",
"DISABLE_INGRESS": "true",
"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.7"
}