mirror of
https://github.com/CopilotKit/CopilotKit.git
synced 2026-09-14 16:26:20 +08:00
88ac426811
- 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
7 lines
400 B
SQL
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;
|