From 6a091c0baeaeda00476375ca7514635a62f7ba65 Mon Sep 17 00:00:00 2001 From: Manuel Fritsch Date: Fri, 19 Feb 2021 22:05:13 +0100 Subject: [PATCH] "fix config.json" --- .gitignore | 2 +- cbpi/__init__.py | 2 +- cbpi/config/config.json | 32 ++++++++++++++++++++++++++++++++ 3 files changed, 34 insertions(+), 2 deletions(-) create mode 100644 cbpi/config/config.json diff --git a/.gitignore b/.gitignore index ccc2f90..b07d9bf 100644 --- a/.gitignore +++ b/.gitignore @@ -13,5 +13,5 @@ node_modules .vscode .DS_Store .vscode/ -config/ +config/* logs/ \ No newline at end of file diff --git a/cbpi/__init__.py b/cbpi/__init__.py index 2665723..7524b41 100644 --- a/cbpi/__init__.py +++ b/cbpi/__init__.py @@ -1 +1 @@ -__version__ = "4.0.0.22" \ No newline at end of file +__version__ = "4.0.0.23" \ No newline at end of file diff --git a/cbpi/config/config.json b/cbpi/config/config.json new file mode 100644 index 0000000..92ef521 --- /dev/null +++ b/cbpi/config/config.json @@ -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" + } +} \ No newline at end of file