master-zapier-plan-draft/packages/verae-fleet/services/access-web.json
George Lambert c32b65038a
Some checks are pending
offline / test (push) Waiting to run
Turn lab IAM on, move portal to access-web, harden sessions and receipts.
Fleet and department doors now check STAFF_IAM_URL. Walkthrough: cs can
credit (agent is the IAM user) and cannot export; operator can fleet
POST; admin /me is owner. Portal is the public web door at :3021/portal/.
IAM sessions persist; login is rate-limited per user; receipt PDF is
branded. lan-134 stays disabled.
2026-09-11 18:59:18 -04:00

27 lines
760 B
JSON

{
"id": "access-web",
"title": "Direct customer web access",
"kind": "http",
"package": "verae-access-web",
"role": "access-web",
"managed": true,
"runtime": "HTTP :3021 plane=web",
"health": { "type": "http", "path": "/health", "timeoutMs": 2000 },
"ports": { "healthBase": 3021 },
"spawn": {
"cwd": "../verae-access-web",
"command": "node",
"args": ["src/server.js"]
},
"env": {
"PORT": "3021",
"AUTHZ_URL": "http://127.0.0.1:3020",
"ACCOUNT_BALANCE_URL": "http://127.0.0.1:3010",
"NATS_URL": "nats://127.0.0.1:4222",
"ZAPPIER_EDGE_URL": "http://127.0.0.1:3000"
},
"nats": {
"in": [],
"out": ["verae.access.authz.check", "verae.billing.statement.get", "verae.billing.balance.adjust"]
}
}