49 lines
448 B
Plaintext
49 lines
448 B
Plaintext
# Git
|
|
.git
|
|
.gitignore
|
|
|
|
# Dependencies (will be installed in Docker)
|
|
node_modules
|
|
|
|
# Development files
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
.npm
|
|
|
|
# IDE
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
*.sublime-*
|
|
|
|
# Environment files (sensitive)
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
*.env
|
|
|
|
# Test files
|
|
coverage/
|
|
.nyc_output/
|
|
*.test.js
|
|
*.spec.js
|
|
__tests__/
|
|
|
|
# Documentation
|
|
README.md
|
|
CHANGELOG.md
|
|
docs/
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Misc
|
|
*.log
|
|
*.pid
|
|
*.seed
|
|
*.pid.lock
|
|
|