# Git .git .gitignore .gitattributes # Docker .dockerignore Dockerfile docker-compose*.yml *.dockerfile # Documentation *.md LICENSE docs/ # Tests tests/ *.test.js *.spec.js # CI/CD .github/ .gitlab-ci.yml .travis.yml # IDE .vscode/ .idea/ *.swp *.swo *~ # OS .DS_Store Thumbs.db # Logs *.log logs/ # Temporary files tmp/ temp/ *.tmp # Environment .env .env.* !.env.example # Python __pycache__/ *.py[cod] *$py.class *.so .Python build/ develop-eggs/ dist/ downloads/ eggs/ .eggs/ lib/ lib64/ parts/ sdist/ var/ wheels/ *.egg-info/ .installed.cfg *.egg # Node node_modules/ npm-debug.log* yarn-debug.log* yarn-error.log*