Created
January 6, 2025 08:59
-
-
Save HT2Knock/dbd8e6ad3b8c44a4f855bee2c4abe39d to your computer and use it in GitHub Desktop.
NodeJS sample docker ignore
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Build artifacts | |
| dist/ | |
| tmp/ | |
| logs/ | |
| # Node modules (installed inside the container) | |
| node_modules/ | |
| # Docker-related files | |
| docker-compose* | |
| Dockerfile* | |
| .dockerignore | |
| # Development-related files | |
| .clinic/ | |
| .vscode/ | |
| nodemon.json | |
| # Git-related files | |
| .git/ | |
| .gitignore | |
| # Environment files (sensitive information) | |
| .env* | |
| .envrc | |
| # Linter/formatter configs | |
| .eslint* | |
| .prettier* | |
| # Documentation | |
| README.md | |
| # Cache files | |
| *.log | |
| *.cache |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment