CodeIssuesDiscussionsWikiPull RequestsProjectsCommitsActionsReleasesContributorsPulse● GatesSecuritySettingsDeploymentsPipelineInsightsAgents✨ Explain✨ Ask AI✨ Workspace✨ Spec✨ Tests▓ Debt Map✨ NL Search🏛 Archaeology
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 | # Version control
.git
.gitignore
.gitattributes
# Dependencies (reinstalled in Docker)
node_modules
# Bare git repositories (runtime data, not source)
repos
# Environment / secrets
.env
.env.*
!.env.example
# Build / generated output
dist
build
*.js.map
# Documentation
*.md
LICENSE
# Tests
src/__tests__
**/*.test.ts
**/*.spec.ts
# Local tooling config
drizzle.config.ts
tsconfig.json
.editorconfig
.eslintrc*
.prettierrc*
biome.json
# Docker files themselves
Dockerfile
.dockerignore
# OS / editor artifacts
.DS_Store
Thumbs.db
.idea
.vscode
*.swp
*.swo
|