mirror of
https://github.com/PiBrewing/craftbeerpi4.git
synced 2025-02-16 16:23:13 +01:00
- Beerxml files and kbh V2 database can be uploaded to cbpi via webinterface. - Recipes can be created from the xml file or the kbh database - cbpi setup needs to be run to create upload folder - config.json needs to be updated manually on an existing installation ro add the step config. --> this could be added automatically via the extension. However, needs to be discussed with Manuel. Tip: cbpi4-RecipeImport Plugin could be installed , activated and removed later as this plugin adds the parameters during startup including creation of the upload folder
95 lines
2.5 KiB
JSON
95 lines
2.5 KiB
JSON
{
|
|
"AUTHOR": {
|
|
"description": "Author",
|
|
"name": "AUTHOR",
|
|
"options": null,
|
|
"type": "string",
|
|
"value": "John Doe"
|
|
},
|
|
"BREWERY_NAME": {
|
|
"description": "Brewery Name",
|
|
"name": "BREWERY_NAME",
|
|
"options": null,
|
|
"type": "string",
|
|
"value": "CraftBeerPi Brewery"
|
|
},
|
|
"MASH_TUN": {
|
|
"description": "Default Mash Tun",
|
|
"name": "MASH_TUN",
|
|
"options": null,
|
|
"type": "kettle",
|
|
"value": ""
|
|
},
|
|
"TEMP_UNIT": {
|
|
"description": "Temperature Unit",
|
|
"name": "TEMP_UNIT",
|
|
"options": [
|
|
{
|
|
"label": "C",
|
|
"value": "C"
|
|
},
|
|
{
|
|
"label": "F",
|
|
"value": "F"
|
|
}
|
|
],
|
|
"type": "select",
|
|
"value": "C"
|
|
},
|
|
"steps_boil": {
|
|
"description": "Boil step type",
|
|
"name": "steps_boil",
|
|
"options": null,
|
|
"type": "step",
|
|
"value": "BoilStep"
|
|
},
|
|
"steps_boil_temp": {
|
|
"description": "Default Boil Temperature for Recipe Creation",
|
|
"name": "steps_boil_temp",
|
|
"options": null,
|
|
"type": "number",
|
|
"value": "99"
|
|
},
|
|
"steps_cooldown": {
|
|
"description": "Cooldown step type",
|
|
"name": "steps_cooldown",
|
|
"options": null,
|
|
"type": "step",
|
|
"value": "CooldownStep"
|
|
},
|
|
"steps_cooldown_sensor": {
|
|
"description": "Alternative Sensor to monitor temperature durring cooldown (if not selected, Kettle Sensor will be used)",
|
|
"name": "steps_cooldown_sensor",
|
|
"options": null,
|
|
"type": "sensor",
|
|
"value": ""
|
|
},
|
|
"steps_cooldown_temp": {
|
|
"description": "Cooldown temp will send notification when this temeprature is reached",
|
|
"name": "steps_cooldown_temp",
|
|
"options": null,
|
|
"type": "number",
|
|
"value": "20"
|
|
},
|
|
"steps_mash": {
|
|
"description": "Mash step type",
|
|
"name": "steps_mash",
|
|
"options": null,
|
|
"type": "step",
|
|
"value": "MashStep"
|
|
},
|
|
"steps_mashin": {
|
|
"description": "MashIn step type",
|
|
"name": "steps_mashin",
|
|
"options": null,
|
|
"type": "step",
|
|
"value": "MashInStep"
|
|
},
|
|
"steps_mashout": {
|
|
"description": "MashOut step type",
|
|
"name": "steps_mashout",
|
|
"options": null,
|
|
"type": "step",
|
|
"value": "NotificationStep"
|
|
}
|
|
}
|