add chat-widget to monorepo

This commit is contained in:
ramnique 2025-03-09 15:13:19 +05:30
parent 2a16a8ce31
commit 0df92e80c6
35 changed files with 10804 additions and 25 deletions

View file

@ -26,6 +26,7 @@ services:
- REDIS_URL=redis://redis:6379
- MAX_QUERIES_PER_MINUTE=${MAX_QUERIES_PER_MINUTE}
- MAX_PROJECTS_PER_USER=${MAX_PROJECTS_PER_USER}
- CHAT_WIDGET_HOST=${CHAT_WIDGET_HOST}
restart: unless-stopped
agents:
@ -77,6 +78,18 @@ services:
ports:
- "8000:8000"
restart: unless-stopped
chat_widget:
build:
context: ./apps/chat_widget
dockerfile: Dockerfile
ports:
- "3006:3006"
environment:
- PORT=3006
- CHAT_WIDGET_HOST=${CHAT_WIDGET_HOST}
- ROWBOAT_HOST=${ROWBOAT_HOST}
restart: unless-stopped
redis:
image: redis:latest