arnavmehta7 Claude Sonnet 4.6 commited on
Commit
6317b40
·
1 Parent(s): 91270e3

Expand .gitignore to cover venv, build artifacts, editor files, and logs

Browse files
Files changed (1) hide show
  1. .gitignore +26 -0
.gitignore CHANGED
@@ -1,4 +1,30 @@
 
1
  __pycache__/
2
  *.py[cod]
 
 
 
 
 
 
 
 
 
 
 
 
 
3
  .tmp/
 
 
 
4
  output/
 
 
 
 
 
 
 
 
 
 
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