Milestone 0: import zappier billing, Verae middleware, and Zapier research
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.
This commit is contained in:
commit
b4150c8250
1364 changed files with 6814366 additions and 0 deletions
25
harness/compose.middleware.yml
Normal file
25
harness/compose.middleware.yml
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
# 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue