Upload .gitignore
Browse files- .gitignore +41 -0
.gitignore
ADDED
|
@@ -0,0 +1,41 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Secrets & Env
|
| 2 |
+
.env
|
| 3 |
+
.python-version
|
| 4 |
+
|
| 5 |
+
# Python
|
| 6 |
+
__pycache__/
|
| 7 |
+
*.py[cod]
|
| 8 |
+
*$py.class
|
| 9 |
+
*.so
|
| 10 |
+
|
| 11 |
+
# Environments
|
| 12 |
+
.venv/
|
| 13 |
+
env/
|
| 14 |
+
venv/
|
| 15 |
+
.uv/
|
| 16 |
+
|
| 17 |
+
# Build & Dist
|
| 18 |
+
build/
|
| 19 |
+
dist/
|
| 20 |
+
*.egg-info/
|
| 21 |
+
|
| 22 |
+
# Project Outputs & Logs
|
| 23 |
+
recognized_text.txt
|
| 24 |
+
*.log
|
| 25 |
+
q_model.pkl
|
| 26 |
+
|
| 27 |
+
# Large Media / Test Data
|
| 28 |
+
*.mp4
|
| 29 |
+
*.avi
|
| 30 |
+
*.mov
|
| 31 |
+
!environments/wildfire_detection/sample_frames/*
|
| 32 |
+
|
| 33 |
+
# IDEs
|
| 34 |
+
.vscode/
|
| 35 |
+
.idea/
|
| 36 |
+
.cursor/
|
| 37 |
+
.agents/
|
| 38 |
+
|
| 39 |
+
# System
|
| 40 |
+
.DS_Store
|
| 41 |
+
Thumbs.db
|