Files
copilotkit__copilotkit/showcase/shared/intelligence-dev/docker/01-create-databases.sql
QA Agent 88ac426811 fix(starters): add shared intelligence docker-compose with postgres init script (FAC-49)
- Create showcase/shared/intelligence-dev/ with shared docker-compose template
- Add postgres init script that creates intelligence_app + intelligence_app_shadow databases
- Update READMEs for affected integrations (Mastra, Agno, PydanticAI, Strands, ADK, MS Agent Framework, LlamaIndex)
- Document intelligence setup, prerequisites, troubleshooting, and port management
- Fixes 'database intelligence_app does not exist' error reported in QA

Closes FAC-49
2026-07-09 09:24:10 -07:00

7 lines
400 B
SQL

-- Ported verbatim from Intelligence infra/app-postgres/init/01-create-databases.sql.
-- Runs once on the postgres container's first boot (docker-entrypoint-initdb.d).
-- The composite image's migrations oneshot + app-api connect to intelligence_app;
-- graphile-migrate uses intelligence_app_shadow for its shadow database.
CREATE DATABASE intelligence_app;
CREATE DATABASE intelligence_app_shadow;