AdithyaSK HF Staff commited on
Commit
a6ac12e
·
1 Parent(s): 485d935

add .gitignore — skip __pycache__ and the huge raw site/*/traces.json files (lives in bucket instead)

Browse files
Files changed (1) hide show
  1. .gitignore +14 -0
.gitignore ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Local Python bytecode
2
+ __pycache__/
3
+ *.pyc
4
+
5
+ # Raw per-sweep trace files — huge (hundreds of MB), live in the bucket instead.
6
+ # build_data.py writes these locally; we sync site/*/traces.json to the bucket
7
+ # via `hf sync`, never commit them (would blow past the 1 GB LFS cap on Spaces).
8
+ site/*/traces.json
9
+ site/*/traces.json.gz
10
+
11
+ # Editor leftovers
12
+ .DS_Store
13
+ .idea/
14
+ .vscode/