- Add coordinator service to docker-compose.swarm.portainer.yml and docker-compose.swarm.yml with full environment config and healthcheck - Add ANTHROPIC_API_KEY and coordinator settings to .env.swarm.example - Move docker-compose.override.yml.example and docker-compose.prod.yml into docker/ directory - Add *.bak to .gitignore Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
62 lines
810 B
Plaintext
62 lines
810 B
Plaintext
# Dependencies
|
|
node_modules
|
|
.pnpm-store
|
|
|
|
# Build outputs
|
|
dist
|
|
.next
|
|
.turbo
|
|
|
|
# Compiled source (prevent accidental commits)
|
|
apps/*/src/**/*.js
|
|
apps/*/src/**/*.d.ts
|
|
apps/*/src/**/*.js.map
|
|
apps/*/src/**/*.d.ts.map
|
|
packages/*/src/**/*.js
|
|
packages/*/src/**/*.d.ts
|
|
packages/*/src/**/*.js.map
|
|
packages/*/src/**/*.d.ts.map
|
|
|
|
# IDE
|
|
.idea
|
|
.vscode
|
|
*.swp
|
|
*.swo
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Environment
|
|
.env
|
|
.env.local
|
|
.env.test
|
|
.env.development.local
|
|
.env.test.local
|
|
.env.production.local
|
|
.env.bak.*
|
|
*.bak
|
|
|
|
# Credentials (never commit)
|
|
.admin-credentials
|
|
|
|
# Testing
|
|
coverage
|
|
|
|
# Logs
|
|
*.log
|
|
npm-debug.log*
|
|
pnpm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
|
|
# Misc
|
|
*.tsbuildinfo
|
|
.pnpm-approve-builds
|
|
|
|
# Husky
|
|
.husky/_
|
|
|
|
# Orchestrator reports (generated by QA automation, cleaned up after processing)
|
|
docs/reports/qa-automation/
|