-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.gitignore
More file actions
92 lines (72 loc) · 1.5 KB
/
Copy path.gitignore
File metadata and controls
92 lines (72 loc) · 1.5 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
# All runtime data (sessions, logs, workers, sockets, etc.)
data/
backup/
# Fetched slug prefixes (may go stale)
slugs.json
# Secrets and cached auth
.env
!.env.example
.cache/
settings.json
# Python
__pycache__/
*.pyc
*.pyo
*.egg-info/
dist/
build/
.eggs/
# Virtual environments
venv/
.venv/
env/
# IDE
.idea/
.vscode/
*.swp
*.swo
# Dashboard
dashboard/node_modules/
dashboard/dist/
dashboard/.next/
dashboard/tsconfig.tsbuildinfo
# Claude Code
.claude/
# Model outputs
models/out/
# OS
.DS_Store
Thumbs.db
tmp/
backup/
# Large archives
data.zip
# Claim server logs
claim-server/claim-server.log
# Python venvs (the projects themselves are tracked)
**/.venv/
**/__pycache__/
# Custom strategies — keep your own strategies private by default.
# The example strategies shipped with the repo are explicitly un-ignored below.
src/strategies/*.rs
!src/strategies/mod.rs
!src/strategies/poisson_kelly.rs
!src/strategies/poisson_kelly_dynamic.rs
!src/strategies/drift_sniper.rs
!src/strategies/gap_fader.rs
!src/strategies/regime_sniper.rs
!src/strategies/trend_drift.rs
!src/strategies/mean_rev_fader.rs
!src/strategies/late_sniper_cb.rs
# Same convention for sports strategies.
src/sports/strategies/*.rs
!src/sports/strategies/mod.rs
!src/sports/strategies/stale_book.rs
!src/sports/strategies/model_edge.rs
# Fitted model parameters (regenerate with `model-server --fit-dir`)
model-server/params/
model-server/data/
# Working plan documents (not part of the published repo)
SPORTS-BETTING.md
# Added by cargo
/target