Co-authored-by: openhands <openhands@all-hands.dev> Reviewed-on: https://codeberg.org/johba/harb/pulls/94
60 lines
653 B
Text
60 lines
653 B
Text
# Node.js dependencies (should be in named volumes, not copied to build context)
|
|
**/node_modules/
|
|
node_modules/
|
|
|
|
# Build outputs
|
|
**/dist/
|
|
**/build/
|
|
**/.next/
|
|
**/.nuxt/
|
|
|
|
# Caches
|
|
**/.cache/
|
|
**/.vite/
|
|
**/.ponder/
|
|
**/.turbo/
|
|
|
|
# Logs
|
|
*.log
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
pnpm-debug.log*
|
|
|
|
# Environment files (should be generated in containers)
|
|
**/.env.local
|
|
**/.env.*.local
|
|
|
|
# Testing
|
|
**/coverage/
|
|
**/.nyc_output/
|
|
|
|
# Git
|
|
.git/
|
|
.gitignore
|
|
.gitattributes
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Docker
|
|
Dockerfile
|
|
docker-compose*.yml
|
|
.dockerignore
|
|
|
|
# Documentation
|
|
*.md
|
|
!README.md
|
|
|
|
# Temporary files
|
|
tmp/
|
|
temp/
|
|
*.tmp
|