first version of gmail invoice extractor
Build and Push Docker Images / build-and-push (push) Failing after 1m37s

This commit is contained in:
2025-09-16 19:36:05 +02:00
parent a71b3adb40
commit 1df43ae405
13 changed files with 436 additions and 513 deletions
@@ -0,0 +1,23 @@
# Gmail Invoice Extractor Configuration
# VAT number patterns for your company
# Add your actual VAT number patterns here
vat_patterns:
- "BE0?\\d{9}" # Belgium
- "NL\\d{9}B\\d{2}" # Netherlands
- "DE\\d{9}" # Germany
- "FR[A-Z0-9]{2}\\d{9}" # France
- "GB\\d{9,12}" # UK
# Add more patterns as needed
# Gmail search query (modify as needed)
gmail_query: "has:attachment filename:pdf"
# Maximum number of messages to process per run
max_messages: 100
# Folder to save invoices
save_folder: "invoices"
# Logging level (DEBUG, INFO, WARNING, ERROR)
log_level: "INFO"