[ADDED] .gitignore para proyecto Node.js/Node-RED
🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
parent
0f412c089f
commit
4249f330e9
1 changed files with 76 additions and 0 deletions
76
.gitignore
vendored
Normal file
76
.gitignore
vendored
Normal file
|
@ -0,0 +1,76 @@
|
||||||
|
# Node.js
|
||||||
|
node_modules/
|
||||||
|
npm-debug.log
|
||||||
|
yarn-debug.log
|
||||||
|
yarn-error.log
|
||||||
|
package-lock.json
|
||||||
|
.npm
|
||||||
|
.yarn-integrity
|
||||||
|
|
||||||
|
# Node-RED específico
|
||||||
|
.node-red/
|
||||||
|
flows_cred.json
|
||||||
|
.flows.json.backup
|
||||||
|
.config.json
|
||||||
|
.config.json.backup
|
||||||
|
.sessions.json
|
||||||
|
.sessions.json.backup
|
||||||
|
flows.json.backup
|
||||||
|
|
||||||
|
# Directorios de flujos
|
||||||
|
.config.nodes.json
|
||||||
|
.config.runtime.json
|
||||||
|
|
||||||
|
# Archivos temporales
|
||||||
|
.DS_Store
|
||||||
|
*.swp
|
||||||
|
*.swo
|
||||||
|
.npmrc
|
||||||
|
*.tgz
|
||||||
|
.tmp/
|
||||||
|
temp/
|
||||||
|
tmp/
|
||||||
|
|
||||||
|
# Archivos de entorno
|
||||||
|
.env
|
||||||
|
.env.local
|
||||||
|
.env.development
|
||||||
|
.env.test
|
||||||
|
.env.production
|
||||||
|
|
||||||
|
# Directorios de cobertura
|
||||||
|
coverage/
|
||||||
|
lib-cov/
|
||||||
|
.nyc_output/
|
||||||
|
|
||||||
|
# Logs
|
||||||
|
logs/
|
||||||
|
*.log
|
||||||
|
npm-debug.log*
|
||||||
|
yarn-debug.log*
|
||||||
|
yarn-error.log*
|
||||||
|
lerna-debug.log*
|
||||||
|
|
||||||
|
# Directorios de construcción
|
||||||
|
dist/
|
||||||
|
build/
|
||||||
|
out/
|
||||||
|
|
||||||
|
# Dependencias específicas de IDE/Editor
|
||||||
|
.idea/
|
||||||
|
.vscode/
|
||||||
|
*.sublime-project
|
||||||
|
*.sublime-workspace
|
||||||
|
.project
|
||||||
|
.classpath
|
||||||
|
.c9/
|
||||||
|
*.launch
|
||||||
|
.settings/
|
||||||
|
*.code-workspace
|
||||||
|
|
||||||
|
# Caché del sistema
|
||||||
|
.cache/
|
||||||
|
.cache-loader/
|
||||||
|
|
||||||
|
# Generados en tiempo de ejecución
|
||||||
|
.data/
|
Loading…
Reference in a new issue