-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
48 lines (42 loc) · 931 Bytes
/
Copy path.gitignore
File metadata and controls
48 lines (42 loc) · 931 Bytes
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
# Python
__pycache__/
*.py[cod]
*.egg-info/
*.egg
build/
dist/
.venv/
venv/
# Tooling
.pytest_cache/
.coverage
htmlcov/
.mypy_cache/
.ruff_cache/
# Editors / OS
.idea/
.vscode/
.DS_Store
# Local owner-only ops helper (SSH deploy) — never committed
deploy.sh
# Local owner-only personal / interview drafts — never committed
docs/systems_visibility_roadmap.md
# Local data and secrets (.env.mainnet holds the real-money API key).
# paper.env* covers careless copies of paper.env.example ("cp X.example X").
.env
.env.*
!.env.example
paper.env*
!paper.env.example
/data/
/outputs/
*.parquet
*.png
# ... except versioned site assets (OG link-preview image served by nginx).
!ops/static/*.png
# Paper-trading harness operational artifacts (validation Tests 3-4)
# Keep the directory layout, ignore the per-cycle data.
paper_trading/logs/*
!paper_trading/logs/.gitkeep
paper_trading/vintages/*
!paper_trading/vintages/.gitkeep