CodeIssuesDiscussionsWikiPull RequestsProjectsCommitsActionsReleasesContributorsPulse● GatesSecuritySettingsDeploymentsPipelineInsightsAgents✨ Explain✨ Ask AI✨ Workspace✨ Spec✨ Tests▓ Debt Map✨ NL Search🏛 Archaeology
Blame · Line-by-line history
.dockerignore
Each line is annotated with the commit that last touched it. Click any SHA to jump to that commit and see the surrounding change.
| e883329 | 1 | # Version control |
| 2 | .git | |
| 3 | .gitignore | |
| 4 | .gitattributes | |
| 5 | ||
| 6 | # Dependencies (reinstalled in Docker) | |
| 7 | node_modules | |
| 8 | ||
| 9 | # Bare git repositories (runtime data, not source) | |
| 10 | repos | |
| 11 | ||
| 12 | # Environment / secrets | |
| 13 | .env | |
| 14 | .env.* | |
| 15 | !.env.example | |
| 16 | ||
| 17 | # Build / generated output | |
| 18 | dist | |
| 19 | build | |
| 20 | *.js.map | |
| 21 | ||
| 22 | # Tests | |
| 23 | src/__tests__ | |
| 24 | **/*.test.ts | |
| 25 | **/*.spec.ts | |
| 26 | ||
| 821ea47 | 27 | # Local tooling config (linters/formatters — not needed at runtime) |
| e883329 | 28 | .editorconfig |
| 29 | .eslintrc* | |
| 30 | .prettierrc* | |
| 31 | biome.json | |
| 32 | ||
| 33 | # Docker files themselves | |
| 34 | Dockerfile | |
| 35 | .dockerignore | |
| 36 | ||
| 37 | # OS / editor artifacts | |
| 38 | .DS_Store | |
| 39 | Thumbs.db | |
| 40 | .idea | |
| 41 | .vscode | |
| 42 | *.swp | |
| 43 | *.swo | |
| 821ea47 | 44 | |
| 45 | # Claude / agent tooling (internal) | |
| 46 | .claude |