mirror of
https://github.com/collinear-ai/yc-bench.git
synced 2026-04-19 12:58:03 +00:00
Fresh clones failed with ModuleNotFoundError because agent/, db/, runner/, and services/ subpackages had no __init__.py. Also anchor /db/ and /logs/ in .gitignore so they don't match src/yc_bench/db/. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
37 lines
482 B
Text
37 lines
482 B
Text
# Secrets / local env
|
|
.env
|
|
backend/.env
|
|
|
|
# Python cache / build artifacts
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
.pytest_cache/
|
|
.mypy_cache/
|
|
|
|
# Local virtual environments
|
|
.venv/
|
|
venv/
|
|
backend/.venv/
|
|
|
|
# Packaging artifacts
|
|
*.egg-info/
|
|
dist/
|
|
build/
|
|
|
|
# OS/editor noise
|
|
.DS_Store
|
|
|
|
# Benchmark outputs / logs
|
|
backend/results_*.json
|
|
backend/yc_bench_result_*.json
|
|
backend/yc_bench_log_*.txt
|
|
|
|
agent.md
|
|
|
|
# Benchmark runtime outputs
|
|
/db/
|
|
/logs/
|
|
|
|
# Claude session context — local only
|
|
CLAUDE.md
|