47 lines
524 B
Plaintext
47 lines
524 B
Plaintext
# Instructions
|
|
.github/instructions/
|
|
|
|
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*.pyo
|
|
*.pyd
|
|
*.so
|
|
*.egg-info/
|
|
.eggs/
|
|
.pytest_cache/
|
|
.mypy_cache/
|
|
.ruff_cache/
|
|
.coverage
|
|
htmlcov/
|
|
|
|
# Virtual environments
|
|
.venv/
|
|
venv/
|
|
|
|
# IDE / OS
|
|
.vscode/
|
|
.idea/
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Env / secrets
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
secrets/
|
|
|
|
# Local build artifacts
|
|
build/
|
|
dist/
|
|
|
|
# Local database / runtime data
|
|
data/*.duckdb
|
|
data/*.duckdb.wal
|
|
data/*.duckdb.tmp
|
|
logs/
|
|
ops/performance/latest_profile.json
|
|
|
|
# Node assets if used for frontend tooling
|
|
node_modules/
|