Files
duocthu/.gitignore
T
VuQuangBao a85b0ccac8 Fix the F3 out-of-scope gate, close out the V1 feature audit, and clean up project docs
Also drop .github/ (GitHub-specific CI/CD workflows and ArgoCD
operational scripts) from this mirror -- Gitea auto-picked up
.github/workflows/*.yml as Actions and queued a run against secrets
that don't exist here. Not meaningful outside the GitHub-hosted repo
anyway.
2026-08-25 12:05:00 +07:00

54 lines
983 B
Plaintext

# Node
node_modules/
dist/
build/
.next/
.turbo/
*.tsbuildinfo
npm-debug.log*
pnpm-debug.log*
# Python
__pycache__/
*.pyc
.venv/
.venv*/
venv/
.pytest_cache/
.ruff_cache/
*.egg-info/
# Env / secrets
.env
.env.*
!.env.example
# Investigation scratch — temporary evidence tools and their rendered output,
# deleted once their finding lands in a test, fixture, ADR or the outlier
# catalog; they are never imported by production code.
ingestion/scratch/
# Ingestion large/derived artifacts (regeneratable — never commit)
ingestion/data/interim/*
!ingestion/data/interim/.gitkeep
ingestion/data/processed/*
!ingestion/data/processed/.gitkeep
# Terraform
**/.terraform/
*.tfstate
*.tfstate.*
*.tfvars
# Dev session scratch — background-server logs and UI screenshots written to
# the repo root and to apps/ai-service/ during development sessions. Never
# imported by production code; safe to delete at any time.
tmp/
output/
# OS / editor
.DS_Store
Thumbs.db
.vscode/
.idea/