-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
68 lines (60 loc) · 1.27 KB
/
.gitignore
File metadata and controls
68 lines (60 loc) · 1.27 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
# Python
__pycache__/
*.pyc
*.pyo
*.egg-info/
dist/
build/
venv/
.venv/
env/
.env
# Environment / secrets
.env
.env.*
!.env.example
*.local
# OpenShift site-specific config
openshift/config.env
openshift/01-secrets.yaml
# Internal development notes — may contain cluster-specific details
# (hostnames, IP ranges, internal DNS) that should not go to a public
# repo. Keep locally as a knowledge base, but exclude from commits.
REPRODUCTION_PROMPT.md
docs/REPRODUCTION_PROMPT.md
NOTES.md
notes.md
TODO.local.md
# TLS
*.key
*.pem
*.p12
*.pfx
*.crt
*.cer
tls/
# Editor / OS
.DS_Store
Thumbs.db
.idea/
.vscode/
*.swp
*.swo
*~
# Test / coverage
.pytest_cache/
htmlcov/
.coverage
*.cover
# Scheduler eval harness — generated artifacts
# Per-run report directories are pure outputs; the only thing in
# reports/ that's tracked is .gitkeep so the directory exists.
scripts/scheduler_eval/reports/*
!scripts/scheduler_eval/reports/.gitkeep
# Fixture JSONs are pulled from TBA on demand. We track only the
# baselines we ship intentionally (2026mnst* — used by the smoke
# test as ground-truth). Everything else generated by
# pull_tba_fixtures.py stays local.
scripts/scheduler_eval/fixtures/*.json
!scripts/scheduler_eval/fixtures/2026mnst.json
!scripts/scheduler_eval/fixtures/2026mnst__actual.json