I have a project (github) where my node-red credentials file (controller/flows_cred.json
) is encrypted.
FYI node-red is running on raspberry pi 3 in a docker container based on image nodered/node-red:3.0.2-16
I no longer want to encrypt my credentials for this project (as I am going to specify any credentials throughenvironment variables).
I don't know the password that is used to encrypt my credentials.
I am happy to reenter all my credentials.
In order to disable encryption of my credential file I thought I just need to delete my credential file (controller/flows_cred.json
) and disable encryption in the settings.js
file by adding the line:
credentialSecret: false,
but this doesn't disable encryption:
I have no clue what else I can try.