Jared Paul commited on
Commit
bc099bd
·
1 Parent(s): 134fffd

add .gitignore

Browse files
Files changed (1) hide show
  1. .gitignore +27 -0
.gitignore ADDED
@@ -0,0 +1,27 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Python
2
+ __pycache__/
3
+ *.py[cod]
4
+ *.egg-info/
5
+ .pytest_cache/
6
+
7
+ # Virtual environments
8
+ .venv/
9
+ venv/
10
+ env/
11
+
12
+ # Secrets / local config (set these as Hugging Face Space Secrets instead)
13
+ .env
14
+ .env.*
15
+
16
+ # Gradio runtime artifacts
17
+ flagged/
18
+ gradio_cached_examples/
19
+ *.db
20
+
21
+ # Editor / OS / agent state
22
+ .cursor/
23
+ .DS_Store
24
+ .idea/
25
+ .vscode/
26
+
27
+ PLAN.md