-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy path.gitignore
More file actions
55 lines (47 loc) · 2.02 KB
/
Copy path.gitignore
File metadata and controls
55 lines (47 loc) · 2.02 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
# ── Claude Code internal files ────────────────────────────────────────────────
.claude/
# ── Credentials & secrets ─────────────────────────────────────────────────────
.env
*.env
.env.*
!.env.example
# ── Trade logs & account data (never commit real P&L / account numbers) ───────
logs/
data/
# ── Python ────────────────────────────────────────────────────────────────────
__pycache__/
*.py[cod]
*$py.class
*.pyo
.Python
build/
dist/
*.egg-info/
.eggs/
pip-wheel-metadata/
*.whl
# ── Virtual environments ──────────────────────────────────────────────────────
venv/
.venv/
env/
ENV/
.env.bak
# ── IDE / editor ──────────────────────────────────────────────────────────────
.vscode/
.idea/
*.sublime-project
*.sublime-workspace
.DS_Store
Thumbs.db
desktop.ini
# ── Reports (generated files, not source) ─────────────────────────────────────
logs/*.xlsx
logs/*.csv
logs/*.json
# ── Jupyter ───────────────────────────────────────────────────────────────────
.ipynb_checkpoints/
*.ipynb
# ── Testing ───────────────────────────────────────────────────────────────────
.pytest_cache/
.coverage
htmlcov/