mirror of
https://github.com/PiBrewing/craftbeerpi4.git
synced 2024-11-21 14:38:15 +01:00
"fix config.json"
This commit is contained in:
parent
fb85d67fcf
commit
6a091c0bae
3 changed files with 34 additions and 2 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -13,5 +13,5 @@ node_modules
|
|||
.vscode
|
||||
.DS_Store
|
||||
.vscode/
|
||||
config/
|
||||
config/*
|
||||
logs/
|
|
@ -1 +1 @@
|
|||
__version__ = "4.0.0.22"
|
||||
__version__ = "4.0.0.23"
|
32
cbpi/config/config.json
Normal file
32
cbpi/config/config.json
Normal 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"
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue