Hello, does node-red track changes so any changes can be restored? I use git for other programming languages but not sure what the equivalent are for node-red?
Thanks
Hello, does node-red track changes so any changes can be restored? I use git for other programming languages but not sure what the equivalent are for node-red?
Thanks
there is the projects feaure which you can enabled in your settings file and gives you git integration in the editor.
If you don't want to use the Projects feature then you can use git manually by committing files in the .node-red directory. This .gitignore
file will mask the ones you don't need
*.backup*
node_modules
context
.config.users.json
.config.users.json
contains information about how the editor is laid out so changes often, but you might want to commit that, or you might not.
This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.