mirror of
https://github.com/hassio-addons/addon-grocy.git
synced 2025-05-04 11:11:30 +00:00
* Implement FeatFEATURE_SETTING_STOCK_COUNT_OPENED_PRODUCTS_AGAINST_MINIMUM_STOCK_AMOUNTre * Added documentation for stock_count_opened_products_against_minimum_stock_amount * Added documentation for Barcode Buddy * Fix MD013 Line length * Fix MD009 Trailing spaces * Prettified Code! * Apply suggestions from code review * Update grocy/DOCS.md Co-authored-by: Franck Nijhof <frenck@frenck.nl>
76 lines
2.3 KiB
JSON
Executable file
76 lines
2.3 KiB
JSON
Executable file
{
|
|
"name": "Grocy",
|
|
"version": "dev",
|
|
"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"
|
|
}
|
|
}
|