node-red-gfconnect
node-red-gfconnect copied to clipboard
Brewfather API key not saved between reboots
Values for ID and API-key are not saved between reboots. Is there a way to hardcode it into the flow? Perhaps by using flow.set?
I will look into making a more permanent solution but in the meantime there is a workaround for this where the Node RED context is automatically saved to file.
You need to edit the settings file for node RED:
nano ~/.node-red/settings.js
Navigate to the section named Context Storage and change the setting to the following:
contextStorage: {
default: {
module:"localfilesystem"
},
},
The API key should now be automatically saved to file