37 lines
391 B
Plaintext
37 lines
391 B
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
.pytest_cache/
|
|
.mypy_cache/
|
|
.ruff_cache/
|
|
.venv/
|
|
venv/
|
|
|
|
# Runtime logs
|
|
*.log
|
|
server.out.log
|
|
server.err.log
|
|
|
|
# Local environment
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
|
|
# App runtime data
|
|
data/
|
|
uploads/
|
|
static/images/
|
|
pipe_survival_0331.db
|
|
|
|
# Large generated or local model artifacts
|
|
*.joblib
|
|
*.pkl
|
|
*.pickle
|
|
|
|
# OS/editor files
|
|
.DS_Store
|
|
Thumbs.db
|
|
.vscode/
|
|
.idea/
|