# Version control .git .gitignore # GitHub metadata and local CI files .github # IDE/editor files .idea .vscode *.swp *.swo # OS files .DS_Store Thumbs.db desktop.ini # Environment and secrets .env .env.* !.env.example # Dependencies and build output node_modules dist build coverage # Logs and runtime artifacts *.log npm-debug.log* yarn-debug.log* yarn-error.log* *.pid *.seed *.pid.lock # Temporary/cache files tmp temp .cache # Local-only Docker files docker-compose*.yml docker-compose*.yaml