32 lines
763 B
Text
32 lines
763 B
Text
# Datenbank
|
|
DATABASE_URL=postgresql://user:password@localhost:5432/invoice_check
|
|
REDIS_URL=redis://localhost:6379
|
|
|
|
# Auth
|
|
SECRET_KEY=your-secret-key-here
|
|
ALGORITHM=HS256
|
|
ACCESS_TOKEN_EXPIRE_MINUTES=30
|
|
|
|
# AWS Bedrock (DSGVO: eu-central-1)
|
|
AWS_ACCESS_KEY_ID=your-key-here
|
|
AWS_SECRET_ACCESS_KEY=your-secret-here
|
|
AWS_DEFAULT_REGION=eu-central-1
|
|
|
|
# Mail-Server (Strato + Gmail)
|
|
IMAP_HOST=imap.strato.de
|
|
IMAP_PORT=993
|
|
IMAP_USER=your-email@domain.de
|
|
IMAP_PASSWORD=your-app-password
|
|
|
|
# Gmail (optional, falls auch Gmail genutzt wird)
|
|
GMAIL_IMAP_HOST=imap.gmail.com
|
|
GMAIL_IMAP_PORT=993
|
|
GMAIL_IMAP_USER=your-email@gmail.com
|
|
GMAIL_IMAP_PASSWORD=your-app-password
|
|
|
|
# Ablageort (Evo-X2)
|
|
INVOICE_STORAGE_PATH=/Volumes/Evo-X2/Rechnungen
|
|
|
|
# App
|
|
ENVIRONMENT=development
|
|
PORT=8001
|