Spaces:
Sleeping
Sleeping
Create .gitignore
Browse files- .gitignore +91 -0
.gitignore
ADDED
|
@@ -0,0 +1,91 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# .gitignore — First Aid Assistant (Streamlit)
|
| 2 |
+
|
| 3 |
+
# Place this file at the repo root to avoid committing sensitive files,
|
| 4 |
+
|
| 5 |
+
# large artifacts, virtual environments, and editor metadata.
|
| 6 |
+
|
| 7 |
+
# Byte-compiled / optimized / DLL files
|
| 8 |
+
|
| 9 |
+
**pycache**/
|
| 10 |
+
*.py[cod]
|
| 11 |
+
*$py.class
|
| 12 |
+
|
| 13 |
+
# C extensions
|
| 14 |
+
|
| 15 |
+
*.so
|
| 16 |
+
|
| 17 |
+
# Distribution / packaging
|
| 18 |
+
|
| 19 |
+
build/
|
| 20 |
+
dist/
|
| 21 |
+
*.egg-info/
|
| 22 |
+
pip-wheel-metadata/
|
| 23 |
+
|
| 24 |
+
# Virtual environments
|
| 25 |
+
|
| 26 |
+
.venv/
|
| 27 |
+
venv/
|
| 28 |
+
ENV/
|
| 29 |
+
env/
|
| 30 |
+
|
| 31 |
+
# Python env files
|
| 32 |
+
|
| 33 |
+
.env
|
| 34 |
+
.env.*
|
| 35 |
+
|
| 36 |
+
# Streamlit secrets (never commit your API keys)
|
| 37 |
+
|
| 38 |
+
.streamlit/secrets.toml
|
| 39 |
+
|
| 40 |
+
# Application data (local victim records, uploads, etc.)
|
| 41 |
+
|
| 42 |
+
/data/
|
| 43 |
+
/data/*
|
| 44 |
+
!data/.gitkeep
|
| 45 |
+
|
| 46 |
+
# Jupyter
|
| 47 |
+
|
| 48 |
+
.ipynb_checkpoints/
|
| 49 |
+
|
| 50 |
+
# Pytest
|
| 51 |
+
|
| 52 |
+
.pytest_cache/
|
| 53 |
+
|
| 54 |
+
# IDEs and editors
|
| 55 |
+
|
| 56 |
+
.vscode/
|
| 57 |
+
.idea/
|
| 58 |
+
*.sublime-workspace
|
| 59 |
+
*.sublime-project
|
| 60 |
+
|
| 61 |
+
# macOS
|
| 62 |
+
|
| 63 |
+
.DS_Store
|
| 64 |
+
|
| 65 |
+
# Logs and local runtime files
|
| 66 |
+
|
| 67 |
+
*.log
|
| 68 |
+
*.pid
|
| 69 |
+
*.sock
|
| 70 |
+
|
| 71 |
+
# Coverage
|
| 72 |
+
|
| 73 |
+
htmlcov/
|
| 74 |
+
.coverage
|
| 75 |
+
.coverage.*
|
| 76 |
+
|
| 77 |
+
# System files
|
| 78 |
+
|
| 79 |
+
Thumbs.db
|
| 80 |
+
|
| 81 |
+
# Optional: lock files from package managers (uncomment if you prefer not to commit)
|
| 82 |
+
|
| 83 |
+
# poetry.lock
|
| 84 |
+
|
| 85 |
+
# Pipfile.lock
|
| 86 |
+
|
| 87 |
+
# Keep a placeholder file in data/ if you want the empty directory tracked
|
| 88 |
+
|
| 89 |
+
# create an empty file: data/.gitkeep
|
| 90 |
+
|
| 91 |
+
# End of .gitignore
|