mirror of
https://github.com/Tria-plc/edr-platform.git
synced 2026-08-26 12:41:04 +00:00
Hermetic E2E harness targeting pricing integrity and backoffice config: - e2e/ docker Postgres (5544) + prepare.sh/run.sh one-command runner + HTML report - 6 suites / 23 tests reproducing pricing, FX, wallet, refund, config and auth defects (see docs/ISSUES.md); docs/e2e-test-matrix.md documents the matrix - two-tier harness (slim module boot + direct service instantiation) to work around the IAM/RabbitMQ/file-type boot wall - .env.test.example tracked; loader falls back to it for fresh checkouts Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
7 lines
334 B
SQL
7 lines
334 B
SQL
-- Runs once on first container start (Postgres initdb hook).
|
|
-- Prisma migrate (passenger) and TypeORM migrate (iam) create their own tables,
|
|
-- but the schemas must exist first. edr_payment is owned by the payment-api.
|
|
CREATE SCHEMA IF NOT EXISTS passenger;
|
|
CREATE SCHEMA IF NOT EXISTS iam;
|
|
CREATE SCHEMA IF NOT EXISTS edr_payment;
|