Gaykar commited on
Commit
2fc3031
·
1 Parent(s): deded63

added ignore

Browse files
Files changed (1) hide show
  1. .gitignore +40 -0
.gitignore ADDED
@@ -0,0 +1,40 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # --- Secrets & Credentials ---
2
+ .env
3
+ google-credentials.json
4
+ *.json
5
+ !composer.json # If you use composer (optional)
6
+ /venv
7
+
8
+ # --- Python Environment ---
9
+ __pycache__/
10
+ *.py[cod]
11
+ *$py.class
12
+ venv/
13
+ env/
14
+ .venv/
15
+ .env.local
16
+
17
+ # --- FastAPI / App Specific ---
18
+ static/uploads/*
19
+ !static/uploads/.gitkeep
20
+
21
+ # --- Database ---
22
+ *.sqlite3
23
+ *.db
24
+ *.local
25
+
26
+ # --- Machine Learning / Large Files ---
27
+ *.h5
28
+ *.pth
29
+ *.pt
30
+ *.tflite
31
+ *.onnx
32
+
33
+ # --- OS Related ---
34
+ .DS_Store
35
+ Thumbs.db
36
+
37
+ # --- IDEs ---
38
+ .vscode/
39
+ .idea/
40
+ *.swp