autofax/.gitignore
Sochen aef5e5283a Initial commit: automated hourly fax sender for insurance claims
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>
2026-03-06 11:36:47 +00:00

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