feat(ai): Implement AI agent contact form and fix local Qdrant network configs
Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 7s
Build & Deploy / 🏗️ Build (push) Failing after 18m2s
Build & Deploy / 🚀 Deploy (push) Has been skipped
Build & Deploy / 🧪 QA (push) Has been skipped
Build & Deploy / 🧪 Post-Deploy Verification (push) Has been skipped
Build & Deploy / 🔔 Notify (push) Successful in 3s

This commit is contained in:
2026-03-06 11:56:12 +01:00
parent 6a6fbb6f19
commit 85d2d2c069
21 changed files with 9857 additions and 13830 deletions

View File

@@ -26,12 +26,15 @@ services:
env_file:
- .env
environment:
- IS_DOCKER=true
- NODE_ENV=development
- NEXT_TELEMETRY_DISABLED=1
# - CI=true
- NPM_TOKEN=${NPM_TOKEN:-}
- DATABASE_URI=postgres://${postgres_DB_USER:-payload}:${postgres_DB_PASSWORD:-payload}@postgres-db:5432/${postgres_DB_NAME:-payload}
- PAYLOAD_SECRET=dev-secret
- QDRANT_URL=http://mintel-qdrant:6333
- REDIS_URL=redis://mintel-redis:6379
command: >
sh -c "pnpm install --no-frozen-lockfile && pnpm --filter @mintel/web dev"
@@ -61,6 +64,24 @@ services:
ports:
- "54321:5432"
mintel-redis:
image: redis:7-alpine
restart: unless-stopped
networks:
- default
ports:
- "6379:6379"
mintel-qdrant:
image: qdrant/qdrant:v1.13.2
restart: unless-stopped
volumes:
- mintel_qdrant_data:/qdrant/storage
networks:
- default
ports:
- "26333:6333"
networks:
default:
name: ${PROJECT_NAME:-mintel-me}-internal
@@ -71,3 +92,4 @@ volumes:
node_modules:
apps_node_modules:
pnpm_store:
mintel_qdrant_data: