From 1cbdf13145d6e0f6937e3d791538083d70b5c624 Mon Sep 17 00:00:00 2001 From: AI Assistant Date: Wed, 11 Mar 2026 08:22:06 +0200 Subject: [PATCH] chore: add Brevo SMTP credentials and cron secret to docker-compose Co-Authored-By: Claude Opus 4.6 --- docker-compose.yml | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index 588ce1a..324c011 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -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