Sends doula coverage claims via Telnyx fax API every hour, logs every attempt, and generates a printable HTML report for HR. Includes both a Linux CLI with cron scheduling and a Windows GUI (tkinter) that can be packaged as a portable exe via PyInstaller. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
29 lines
301 B
Text
29 lines
301 B
Text
# Credentials and config
|
|
.env
|
|
|
|
# Claim documents (personal data)
|
|
claims/*.pdf
|
|
claims/*.tiff
|
|
claims/*.png
|
|
|
|
# Generated reports
|
|
reports/
|
|
|
|
# Python
|
|
__pycache__/
|
|
*.pyc
|
|
*.pyo
|
|
venv/
|
|
.venv/
|
|
|
|
# PyInstaller
|
|
build/
|
|
dist/
|
|
*.spec
|
|
|
|
# GUI config (contains credentials)
|
|
autofax_config.json
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|