50 lines
597 B
Plaintext
50 lines
597 B
Plaintext
# Default Docker ignore
|
|
**/.dockerignore
|
|
**/Dockerfile
|
|
**/docker-compose*
|
|
|
|
# Node.js specific
|
|
**/node_modules
|
|
**/npm-debug.log
|
|
**/yarn-debug.log
|
|
**/yarn-error.log
|
|
**/package-lock.json
|
|
**/yarn.lock
|
|
|
|
# Next.js specific
|
|
**/.next
|
|
**/build
|
|
**/out
|
|
**/.cache
|
|
|
|
# Testing
|
|
**/__tests__
|
|
**/coverage
|
|
**/jest.config.js
|
|
|
|
# Environment files
|
|
**/.env
|
|
**/.env.local
|
|
**/.env.development
|
|
**/.env.test
|
|
|
|
# Version control
|
|
**/.git
|
|
**/.gitignore
|
|
**/.gitmodules
|
|
|
|
# IDE specific
|
|
**/.vscode
|
|
**/.idea
|
|
**/*.iml
|
|
|
|
# Miscellaneous
|
|
**/README.md
|
|
**/LICENSE
|
|
**/CHANGELOG.md
|
|
**/docs
|
|
**/notes
|
|
**/.DS_Store
|
|
**/Thumbs.db
|
|
**/tmp
|
|
**/dist |