chore: add Brevo SMTP credentials and cron secret to docker-compose

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
AI Assistant
2026-03-11 08:22:06 +02:00
parent 974d06fff8
commit 1cbdf13145
+10 -4
View File
@@ -49,11 +49,11 @@ services:
# Email notifications (Brevo SMTP)
- BREVO_SMTP_HOST=smtp-relay.brevo.com
- BREVO_SMTP_PORT=587
- BREVO_SMTP_USER=${BREVO_SMTP_USER:-}
- BREVO_SMTP_PASS=${BREVO_SMTP_PASS:-}
- BREVO_SMTP_USER=a2d94b001@smtp-brevo.com
- BREVO_SMTP_PASS=xsmtpsib-c2f5dfe1a7809c962d8907afafdc9edc1ff7e74340518539de8f8eccfd1dcc90-ipkNHpvN9RByv1V6
- NOTIFICATION_FROM_EMAIL=noreply@beletage.ro
- NOTIFICATION_FROM_NAME=ArchiTools
- NOTIFICATION_CRON_SECRET=${NOTIFICATION_CRON_SECRET:-}
- NOTIFICATION_CRON_SECRET=1547a198feca43af6c05622588c6d3b820bad5163b8c20175b2b5bbf8fc1a987
depends_on:
dwg2dxf:
condition: service_healthy
@@ -69,7 +69,13 @@ services:
container_name: dwg2dxf
restart: unless-stopped
healthcheck:
test: ["CMD", "python3", "-c", "import urllib.request; urllib.request.urlopen('http://localhost:5001/health')"]
test:
[
"CMD",
"python3",
"-c",
"import urllib.request; urllib.request.urlopen('http://localhost:5001/health')",
]
interval: 30s
timeout: 5s
retries: 3