[IMPROVED] Configuración de Node-RED con proyectos habilitados
🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
parent
6fa31bfcff
commit
2848ef8f87
7 changed files with 2836 additions and 2 deletions
|
@ -3,7 +3,7 @@
|
||||||
"name": "node-red",
|
"name": "node-red",
|
||||||
"version": "4.0.9-git",
|
"version": "4.0.9-git",
|
||||||
"local": false,
|
"local": false,
|
||||||
"user": false,
|
"user": true,
|
||||||
"nodes": {
|
"nodes": {
|
||||||
"junction": {
|
"junction": {
|
||||||
"name": "junction",
|
"name": "junction",
|
||||||
|
|
8
.node-red/.config.projects.json
Normal file
8
.node-red/.config.projects.json
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
{
|
||||||
|
"projects": {
|
||||||
|
"webservices": {
|
||||||
|
"credentialSecret": false
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"activeProject": "webservices"
|
||||||
|
}
|
|
@ -15,6 +15,19 @@
|
||||||
"tours": {
|
"tours": {
|
||||||
"welcome": "4.0.9-git"
|
"welcome": "4.0.9-git"
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
"git": {
|
||||||
|
"globalUser": {
|
||||||
|
"name": "Mauro Rosero P.",
|
||||||
|
"email": "mauro@rosero.one"
|
||||||
|
},
|
||||||
|
"user": {
|
||||||
|
"name": "Mauro Rosero P.",
|
||||||
|
"email": "mauro@rosero.one"
|
||||||
|
},
|
||||||
|
"workflow": {
|
||||||
|
"mode": "manual"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -7,6 +7,14 @@
|
||||||
"info": "",
|
"info": "",
|
||||||
"env": []
|
"env": []
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"id": "ae43dc9d802ec4d9",
|
||||||
|
"type": "tab",
|
||||||
|
"label": "Flow 1",
|
||||||
|
"disabled": false,
|
||||||
|
"info": "",
|
||||||
|
"env": []
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"id": "772316e0710af934",
|
"id": "772316e0710af934",
|
||||||
"type": "inject",
|
"type": "inject",
|
||||||
|
|
2804
.node-red/package-lock.json
generated
2804
.node-red/package-lock.json
generated
File diff suppressed because it is too large
Load diff
|
@ -5,6 +5,7 @@
|
||||||
"private": true,
|
"private": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@nickcuper/node-red-contrib-html-pro": "~1.0.1",
|
"@nickcuper/node-red-contrib-html-pro": "~1.0.1",
|
||||||
|
"node-red": "~4.0.9",
|
||||||
"node-red-contrib-google-sheets-advance": "~0.0.7",
|
"node-red-contrib-google-sheets-advance": "~0.0.7",
|
||||||
"node-red-contrib-json2csv": "~0.0.3"
|
"node-red-contrib-json2csv": "~0.0.3"
|
||||||
}
|
}
|
||||||
|
|
|
@ -420,7 +420,7 @@ module.exports = {
|
||||||
|
|
||||||
projects: {
|
projects: {
|
||||||
/** To enable the Projects feature, set this value to true */
|
/** To enable the Projects feature, set this value to true */
|
||||||
enabled: false,
|
enabled: true,
|
||||||
workflow: {
|
workflow: {
|
||||||
/** Set the default projects workflow mode.
|
/** Set the default projects workflow mode.
|
||||||
* - manual - you must manually commit changes
|
* - manual - you must manually commit changes
|
||||||
|
|
Loading…
Reference in a new issue