arnavmehta7 Claude Sonnet 4.6 commited on
Commit
23dc514
·
1 Parent(s): 00ede30

Add .gitignore to exclude venv, pycache, tmp, and output artifacts

Browse files
Files changed (1) hide show
  1. .gitignore +30 -0
.gitignore ADDED
@@ -0,0 +1,30 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Python
2
+ __pycache__/
3
+ *.py[cod]
4
+ *.pyo
5
+ *.pyd
6
+ .Python
7
+ *.egg-info/
8
+ dist/
9
+ build/
10
+
11
+ # Virtual environments
12
+ .venv/
13
+ venv/
14
+ env/
15
+
16
+ # Temp / scratch
17
+ .tmp/
18
+ tmp/
19
+
20
+ # Output / artifacts
21
+ output/
22
+
23
+ # Editor
24
+ .DS_Store
25
+ .idea/
26
+ .vscode/
27
+
28
+ # Logs
29
+ *.log
30
+ uvicorn-*.log