Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
QA automation reports in docs/reports/qa-automation/ are ephemeral and should not be committed. They are cleaned up by the orchestrator after task completion.
60 lines
794 B
Plaintext
60 lines
794 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.development.local
|
|
.env.test.local
|
|
.env.production.local
|
|
.env.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/
|