feat: Implement AI Chat Agent, Email Notifications, and UI enhancements
continuous-integration/drone/push Build is passing
continuous-integration/drone/push Build is passing
This commit is contained in:
+14
-1
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user