CI / Architecture Guardrails (pull_request) Failing after 4m37s
CI / Lint (pull_request) Successful in 5m41s
CI / Assistant Split Regression (pull_request) Successful in 5m54s
CI / Typecheck (pull_request) Successful in 6m18s
CI / Build (pull_request) Skipped
CI / E2E Tests (pull_request) Skipped
CI / Fresh-Linux Docker Deploy (pull_request) Skipped
CI / Unit Tests (pull_request) Failing after 17m20s
CI / Release Images (pull_request) Skipped
.gitignore matched .env and .env.*.local but not the copies people and tools actually leave behind — .env.bak-20260911, .env.save, .env.orig. Those carry the identical secrets and showed up as untracked, one `git add .` away from being committed. Patterns verified with git check-ignore. The .claude/settings.json entry stops Claude Code prompting for confirmation on every docker/docker compose invocation during local debugging. Co-Authored-By: claude-flow <ruv@ruv.net>
84 lines
1.2 KiB
Plaintext
84 lines
1.2 KiB
Plaintext
# Dependencies
|
|
node_modules/
|
|
.pnpm-store/
|
|
.pnp
|
|
.pnp.js
|
|
|
|
# Build outputs
|
|
.next/
|
|
.next-e2e/
|
|
**/.next.*
|
|
**/.next.root-owned.*
|
|
dist/
|
|
build/
|
|
.turbo/
|
|
coverage/
|
|
playwright-report/
|
|
test-results/
|
|
apps/web/e2e/.playwright-runtime.json
|
|
|
|
# Environment variables
|
|
.env
|
|
.env.local
|
|
.env.development.local
|
|
.env.test.local
|
|
.env.production.local
|
|
.env.*.local
|
|
# Hand-made or tool-made copies of .env — these carry the same secrets as the
|
|
# original but match none of the patterns above (.env.bak-20260911, .env.save).
|
|
.env.bak*
|
|
.env.backup*
|
|
.env.orig
|
|
.env.save
|
|
*.e2e-backup
|
|
|
|
# Logs
|
|
*.log
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
.pnpm-debug.log*
|
|
|
|
# Database and local runtime data
|
|
*.db
|
|
*.sqlite
|
|
*.sqlite3
|
|
packages/db/backups/
|
|
vectors.db
|
|
|
|
# Prisma
|
|
packages/db/prisma/migrations/*
|
|
!packages/db/prisma/migrations/.gitkeep
|
|
!packages/db/prisma/migrations/**
|
|
|
|
# Editors and OS files
|
|
.vscode/*
|
|
!.vscode/extensions.json
|
|
!.vscode/settings.json
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
.DS_Store
|
|
|
|
# TypeScript
|
|
*.tsbuildinfo
|
|
|
|
# Local agent and tool state
|
|
.codex/
|
|
.swarm/
|
|
.claude-flow/data/
|
|
.claude-flow/logs/
|
|
**/.claude-flow/data/
|
|
**/.claude-flow/logs/
|
|
**/.claude-flow/sessions/
|
|
|
|
# Temporary office lock files
|
|
.~lock.*
|
|
|
|
# Never commit workbook source files
|
|
*.xls
|
|
*.xlsx
|
|
.gstack/
|
|
|
|
.claude/worktrees/
|