mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-24 13:54:57 +00:00
Re-allow docs/docs.db and txt/reports.db via .gitignore negation so the project SQLite databases are version-controlled. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
119 lines
1.6 KiB
Plaintext
119 lines
1.6 KiB
Plaintext
# Python
|
|
.venv/
|
|
venv/
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
|
|
# Node.js
|
|
node_modules/
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
pnpm-debug.log*
|
|
lerna-debug.log*
|
|
.pnp
|
|
.pnp.js
|
|
|
|
# Build outputs
|
|
dist/
|
|
dist-ssr/
|
|
*-dist/
|
|
build/
|
|
.next/
|
|
out/
|
|
next-env.d.ts
|
|
*.local
|
|
|
|
# Environment
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
.secrets
|
|
|
|
# Editor
|
|
.vscode/*
|
|
!.vscode/extensions.json
|
|
!.vscode/settings.json
|
|
!.vscode/launch.json
|
|
!.vscode/tasks.json
|
|
.idea/
|
|
*.sublime-project
|
|
*.sublime-workspace
|
|
.DS_Store
|
|
Thumbs.db
|
|
*.suo
|
|
*.ntvs*
|
|
*.njsproj
|
|
*.sln
|
|
*.sw?
|
|
*~
|
|
|
|
# IDE/Development
|
|
.devcontainer/
|
|
.spark-workbench-id
|
|
.spark-initial-sha
|
|
_codeql_detected_source_root/
|
|
.worktrees/
|
|
|
|
# Database
|
|
prisma/dev.db
|
|
prisma/dev.db-journal
|
|
*.db
|
|
*.sqlite
|
|
|
|
# Re-track project SQLite databases
|
|
!docs/docs.db
|
|
!txt/reports.db
|
|
*.sqlite3
|
|
|
|
# Generated Prisma schema (produced by dbal/shared/tools/codegen/gen_prisma_schema.js)
|
|
dbal/shared/prisma/
|
|
|
|
# Testing
|
|
/test-results/
|
|
/playwright-report/
|
|
/playwright/.cache/
|
|
/e2e-results/
|
|
*.spec.js.map
|
|
*.spec.ts.map
|
|
coverage/
|
|
.nyc_output/
|
|
|
|
# Logs
|
|
logs/
|
|
*.log
|
|
!frontends/nextjs/src/app/api/github/actions/runs/\[runId\]/logs/
|
|
!frontends/nextjs/src/app/api/github/actions/runs/\[runId\]/logs/route.ts
|
|
|
|
# Cache/Temp
|
|
pids/
|
|
.file-manifest
|
|
lint-output.txt
|
|
.turbo/
|
|
|
|
# Analysis outputs
|
|
stub-patterns.json
|
|
complexity-report.json
|
|
|
|
# TODO management
|
|
todos-baseline.json
|
|
todos-export.json
|
|
todos*.json
|
|
|
|
# Project-specific
|
|
**/agent-eval-report*
|
|
vite.config.ts.bak*
|
|
.cache/
|
|
dist-old/
|
|
.vscode/claudesync.json
|
|
**/package-lock.json
|
|
bun.lockb
|
|
|
|
# CodeQL local databases
|
|
.codeql-dbs/
|
|
.codeql-db/
|
|
/.claude/worktrees
|
|
*.tsbuildinfo
|
|
# frontends/pastebin/public/pyodide/ # kept in fat repo
|