Compose-ready workspace: packages/zappier (rate card, portal, Stripe), packages/verae-zapier-middleware (timestamp + NATS), packages/verae-zapier (CLI app), vendor/zapier-platform, and research/zapier vendor corpus. Gate 0 structure checks pass. Product code and research are not yet wired.
25 lines
663 B
YAML
25 lines
663 B
YAML
# Local stack for Phase 7+ (NATS) and Phase 12 E2E.
|
|
# Middleware HTTP can run without NATS when NATS_ENABLED=false.
|
|
|
|
services:
|
|
nats:
|
|
image: nats:2.10
|
|
command: ["-js", "-m", "8222"]
|
|
ports:
|
|
- "4222:4222"
|
|
- "8222:8222"
|
|
|
|
middleware:
|
|
build: ./verae-zapier-middleware
|
|
ports:
|
|
- "3100:3100"
|
|
environment:
|
|
PORT: "3100"
|
|
VERAE_API_BASE_URL: ${VERAE_API_BASE_URL:-https://api.veraetime.net}
|
|
MOCK_VERAE: ${MOCK_VERAE:-true}
|
|
NATS_ENABLED: ${NATS_ENABLED:-false}
|
|
NATS_URL: nats://nats:4222
|
|
TOKEN_SECRET: ${TOKEN_SECRET:-dev-secret}
|
|
DEBUG_VERAE: ${DEBUG_VERAE:-}
|
|
depends_on:
|
|
- nats
|