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 | # Documentation | |
| 23 | *.md | |
| 24 | LICENSE | |
| 25 | ||
| 26 | # Tests | |
| 27 | src/__tests__ | |
| 28 | **/*.test.ts | |
| 29 | **/*.spec.ts | |
| 30 | ||
| 31 | # Local tooling config | |
| 32 | drizzle.config.ts | |
| 33 | tsconfig.json | |
| 34 | .editorconfig | |
| 35 | .eslintrc* | |
| 36 | .prettierrc* | |
| 37 | biome.json | |
| 38 | ||
| 39 | # Docker files themselves | |
| 40 | Dockerfile | |
| 41 | .dockerignore | |
| 42 | ||
| 43 | # OS / editor artifacts | |
| 44 | .DS_Store | |
| 45 | Thumbs.db | |
| 46 | .idea | |
| 47 | .vscode | |
| 48 | *.swp | |
| 49 | *.swo |