forked from hassio-addons/repository
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.json
85 lines (85 loc) · 2.39 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "Grocy",
"version": "0.15.0",
"slug": "grocy",
"description": "ERP beyond your fridge! A groceries & household management solution for your home",
"url": "https://github.com/hassio-addons/addon-grocy",
"ingress": true,
"panel_icon": "mdi:cart",
"arch": [
"aarch64",
"amd64",
"armhf",
"armv7",
"i386"
],
"map": [
"ssl"
],
"ports": {
"80/tcp": null
},
"ports_description": {
"80/tcp": "Web interface (Not required for Ingress)"
},
"options": {
"culture": "en",
"currency": "USD",
"entry_page": "stock",
"features": {
"batteries": true,
"calendar": true,
"chores": true,
"equipment": true,
"recipes": true,
"shoppinglist": true,
"stock": true,
"tasks": true
},
"tweaks": {
"chores_assignment": true,
"multiple_shopping_lists": true,
"stock_best_before_date_tracking": true,
"stock_location_tracking": true,
"stock_price_tracking": true,
"stock_product_freezing": true,
"stock_product_opened_tracking": true,
"stock_count_opened_products_against_minimum_stock_amount": true
},
"ssl": true,
"certfile": "fullchain.pem",
"keyfile": "privkey.pem"
},
"schema": {
"log_level": "list(trace|debug|info|notice|warning|error|fatal)?",
"culture": "list(cs|da|de|el_GR|en|en_GB|es|fi|fr|he_IL|hu|it|ja|ko_KR|nl|no|pl|pt_BR|pt_PT|ru|sk_SK|sv_SE|ta|tr|zh_CN|zh_TW)",
"currency": "match(^[A-Z]{3}$)",
"entry_page": "list(stock|shoppinglist|recipes|chores|tasks|batteries|equipment|calendar|mealplan)",
"features": {
"batteries": "bool",
"calendar": "bool",
"chores": "bool",
"equipment": "bool",
"recipes": "bool",
"shoppinglist": "bool",
"stock": "bool",
"tasks": "bool"
},
"tweaks": {
"calendar_first_day_of_week": "int(0,6)?",
"chores_assignment": "bool",
"meal_plan_first_day_of_week": "int(0,6)?",
"multiple_shopping_lists": "bool",
"stock_best_before_date_tracking": "bool",
"stock_location_tracking": "bool",
"stock_price_tracking": "bool",
"stock_product_freezing": "bool",
"stock_product_opened_tracking": "bool",
"stock_count_opened_products_against_minimum_stock_amount": "bool"
},
"ssl": "bool",
"certfile": "str",
"keyfile": "str"
},
"image": "ghcr.io/hassio-addons/grocy/{arch}"
}