mirror of
https://github.com/hassio-addons/addon-grocy.git
synced 2025-05-04 19:21:24 +00:00
📚 Adds documentation for config options (#14)
Added description of features and full config example
This commit is contained in:
parent
689cbcd1c3
commit
7c487791dc
1 changed files with 27 additions and 0 deletions
27
README.md
27
README.md
|
@ -60,6 +60,17 @@ Example add-on configuration:
|
|||
|
||||
```json
|
||||
{
|
||||
"culture": "en",
|
||||
"currency": "$",
|
||||
"features": {
|
||||
"batteries": true,
|
||||
"calendar": true,
|
||||
"chores": true,
|
||||
"equipment": true,
|
||||
"recipes": true,
|
||||
"shoppinglist": true,
|
||||
"tasks": true
|
||||
},
|
||||
"log_level": "info",
|
||||
"ssl": false,
|
||||
"certfile": "fullchain.pem",
|
||||
|
@ -104,6 +115,22 @@ The private key file to use for SSL.
|
|||
|
||||
**Note**: _The file MUST be stored in `/ssl/`, which is the default for Hass.io_
|
||||
|
||||
### Option: `culture`
|
||||
|
||||
Is used for setting the language.
|
||||
Choose between `da` (Danish), `de`(Deutch), `en` (English), `es` (Spanish), `fr` (French), `it` (Italian), `nl` (Dutch), `no` (Norwegian), `pl` (Polish), `ru` (Russian).
|
||||
|
||||
### Option: `currency`
|
||||
|
||||
Is used for setting the currency.
|
||||
Choose between `$`, `€`, `£`.
|
||||
|
||||
### Option: `features`
|
||||
|
||||
Is used for enable or disable features in Grocy.
|
||||
The following features can be enabled or disabled `batteries`, `calendar`, `chores`, `equipment`, `recipes`, `shoppinglist`, `tasks`.
|
||||
Set it `true` to enable it, `false` otherwise.
|
||||
|
||||
## Embedding into Home Assistant
|
||||
|
||||
It is possible to embed the Grocy interface directly into
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue