feat: Agente-Marketing initial commit

This commit is contained in:
2026-07-03 12:23:34 -04:00
commit 293522436a
52 changed files with 13522 additions and 0 deletions
+29
View File
@@ -0,0 +1,29 @@
services:
casahunter:
build: .
container_name: casahunter
restart: unless-stopped
ports:
- "127.0.0.1:5050:5000"
environment:
- DATABASE_URL=${DATABASE_URL:-mysql+pymysql://casahunter:CHANGE_ME@mariadb:3306/casahunter}
- SECRET_KEY=${SECRET_KEY:?SECRET_KEY must be set in .env}
- OLLAMA_URL=http://host.docker.internal:11434
- OLLAMA_MODEL=qwen2.5:14b
- ANTHROPIC_KEY=
extra_hosts:
- "host.docker.internal:host-gateway"
logging:
driver: local
options:
max-size: "10m"
max-file: "3"
networks:
- web
- mariadb_default
networks:
web:
external: true
mariadb_default:
external: true