"fix config.json"

This commit is contained in:
Manuel Fritsch 2021-02-19 22:05:13 +01:00
parent fb85d67fcf
commit 6a091c0bae
3 changed files with 34 additions and 2 deletions

2
.gitignore vendored
View file

@ -13,5 +13,5 @@ node_modules
.vscode
.DS_Store
.vscode/
config/
config/*
logs/

View file

@ -1 +1 @@
__version__ = "4.0.0.22"
__version__ = "4.0.0.23"

32
cbpi/config/config.json Normal file
View file

@ -0,0 +1,32 @@
{
"BREWERY_NAME": {
"description": "Brewery Name",
"name": "BREWERY_NAME",
"options": null,
"type": "string",
"value": "MANUL"
},
"NAME": {
"description": "Brew Name",
"name": "NAME",
"options": null,
"type": "string",
"value": "HEDER"
},
"TEMP_UNIT": {
"description": "Temperature Unit",
"name": "TEMP_UNIT",
"options": [
{
"label": "C",
"value": "C"
},
{
"label": "F",
"value": "F"
}
],
"type": "select",
"value": "F"
}
}