gaurv007 commited on
Commit
b7308ec
·
verified ·
1 Parent(s): 84da95b

Add .gitignore to protect secrets and local data"

Browse files
Files changed (1) hide show
  1. .gitignore +39 -0
.gitignore ADDED
@@ -0,0 +1,39 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Secrets
2
+ .env
3
+ *.env.local
4
+
5
+ # Python
6
+ __pycache__/
7
+ *.pyc
8
+ *.pyo
9
+ *.egg-info/
10
+ dist/
11
+ build/
12
+ .venv/
13
+ venv/
14
+
15
+ # uv
16
+ .python-version
17
+
18
+ # Data (large files — keep local)
19
+ data/*.parquet
20
+ data/chroma/
21
+ data/papers/
22
+
23
+ # Factor store (your alpha history — keep private)
24
+ factor_store/*.duckdb
25
+ factor_store/*.duckdb.wal
26
+
27
+ # Logs
28
+ logs/
29
+ *.log
30
+
31
+ # IDE
32
+ .vscode/
33
+ .idea/
34
+ *.swp
35
+ *.swo
36
+
37
+ # OS
38
+ .DS_Store
39
+ Thumbs.db