feat: Implement AI Chat Agent, Email Notifications, and UI enhancements
continuous-integration/drone/push Build is passing

This commit is contained in:
2025-12-12 08:35:48 +01:00
parent ccfb674318
commit 5d8976b1cd
58 changed files with 7867 additions and 844 deletions
+14 -1
View File
@@ -38,10 +38,13 @@ services:
# For local postgres container, leave unset. For external PostgreSQL, set as needed.
DATABASE_SSL: ${DATABASE_SSL:-}
SESSION_SECRET: ${SESSION_SECRET:-supersecret_session_key}
SMTP_HOST: mailhog
SMTP_PORT: 1025
SMTP_SECURE: false
# volumes:
# - ./dist/public:/app/server/public
ports:
- "5002:5000"
- "5001:5000"
depends_on:
postgres:
condition: service_healthy
@@ -54,6 +57,16 @@ services:
networks:
- taskflow-network
# MailHog - Local SMTP Server
mailhog:
image: mailhog/mailhog
container_name: taskflow-mailhog
ports:
- "1025:1025" # SMTP
- "8025:8025" # Web UI
networks:
- taskflow-network
volumes:
postgres_data:
driver: local