[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",
|
||||
"version": "4.0.9-git",
|
||||
"local": false,
|
||||
"user": false,
|
||||
"user": true,
|
||||
"nodes": {
|
||||
"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": {
|
||||
"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": "",
|
||||
"env": []
|
||||
},
|
||||
{
|
||||
"id": "ae43dc9d802ec4d9",
|
||||
"type": "tab",
|
||||
"label": "Flow 1",
|
||||
"disabled": false,
|
||||
"info": "",
|
||||
"env": []
|
||||
},
|
||||
{
|
||||
"id": "772316e0710af934",
|
||||
"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,
|
||||
"dependencies": {
|
||||
"@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-json2csv": "~0.0.3"
|
||||
}
|
||||
|
|
|
@ -420,7 +420,7 @@ module.exports = {
|
|||
|
||||
projects: {
|
||||
/** To enable the Projects feature, set this value to true */
|
||||
enabled: false,
|
||||
enabled: true,
|
||||
workflow: {
|
||||
/** Set the default projects workflow mode.
|
||||
* - manual - you must manually commit changes
|
||||
|
|
Loading…
Reference in a new issue