Gaykar commited on
Commit
14911e1
·
1 Parent(s): aa8170a

added git ignore

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