- prompts/: LFU cache exam + 5-pillar grading rubric - outputs/: 8 model .py outputs (local + cloud baseline) - data/benchmark_history.json: graded results (scores, metrics, bugs, patches) - generate_dashboard.py: builds dashboard.html + pages/*.html from JSON - Dockerfile + DEPLOY.md: Gitea→Coolify deploy (build-step, nginx static) - .gitignore: generated HTML excluded (built on deploy) Co-Authored-By: Claude <noreply@anthropic.com>
21 lines
547 B
Plaintext
21 lines
547 B
Plaintext
# --- Generated / build artifacts ---
|
|
# Dashboard HTML is generated by generate_dashboard.py from data/benchmark_history.json.
|
|
# Keep them OUT of git so the repo only holds source — the site regenerates on deploy.
|
|
# (If you'd rather commit the built HTML instead, comment out these lines.)
|
|
/dashboard.html
|
|
/pages/
|
|
# /data/benchmark_history.json # <-- uncomment to keep history local-only too
|
|
|
|
# --- Scratch / previews / tooling ---
|
|
*.png
|
|
/playwright-mcp/
|
|
/.playwright-mcp/
|
|
__pycache__/
|
|
*.pyc
|
|
.DS_Store
|
|
|
|
# --- Local env ---
|
|
.env
|
|
.env.*
|
|
*.local
|