# Dependencies (reinstalled in container) node_modules **/node_modules # Build outputs .next **/dist **/.turbo # Git .git .gitignore # Dev tooling .vscode .idea *.swp *.swo # Environment files (injected at runtime). Glob variants catch nested # .env, .env.local, etc. inside any package directory. .env .env.* **/.env **/.env.* !.env.example # Private keys, certificates, and any secrets-like directory. Defence in # depth against accidentally bind-mounting or COPYing these in. **/*.pem **/*.key **/secrets **/secrets/** # Test artifacts coverage **/coverage e2e-results playwright-report # Docker files (avoid recursive context) Dockerfile* docker-compose* # Documentation docs *.md !packages/*/README.md # OS files .DS_Store Thumbs.db