Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
603 changes: 603 additions & 0 deletions PYTHON_3.14_COMPATIBILITY.md

Large diffs are not rendered by default.

40 changes: 40 additions & 0 deletions diabetes_risk_app/.dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
# Virtual environments
venv/
.venv/
env/

# Python cache
__pycache__/
*.py[cod]
*$py.class
*.so

# Distribution
.eggs/
*.egg-info/
*.egg
dist/
build/

# IDE
.idea/
.vscode/
*.swp
*.swo

# Test artifacts
.pytest_cache/
.coverage
htmlcov/
.tox/

# Documentation
docs/_build/

# Local data
data/synthetic/
*.log

# OS files
.DS_Store
Thumbs.db
8 changes: 8 additions & 0 deletions diabetes_risk_app/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
venv/
__pycache__/
*.pyc
.pytest_cache/
.coverage
*.pkl
*.log
config/*_secrets.yaml
Loading