38 lines
661 B
Plaintext
38 lines
661 B
Plaintext
# Git files
|
|
.git
|
|
.gitignore
|
|
|
|
# Node modules - these are installed within the Docker build context
|
|
node_modules
|
|
|
|
# Docker specific files (if any, other than Dockerfile itself)
|
|
# .dockerignore (to avoid including itself if context changes)
|
|
|
|
# Local development environment files
|
|
.env
|
|
.env*.local
|
|
|
|
# Logs and temporary files
|
|
logs
|
|
*.log
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
pnpm-debug.log*
|
|
|
|
# OS-specific files
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# IDE configuration
|
|
.idea/
|
|
.vscode/
|
|
*.sublime-workspace
|
|
*.sublime-project
|
|
|
|
# Build output (if you ever build locally before Docker)
|
|
dist/
|
|
# If your build output is different, change the line above
|
|
|
|
# Coverage reports
|
|
coverage/
|
|
.nyc_output/ |