Knowledge
Search knowledge... ⌘K
Knowledge · Framework · Capabilities
Infrastructure
What runtime resources this function requires. For pure functions: "none" is a valid descriptor meaning no infra setup needed.
Overview
What runtime resources this function requires. For pure functions: "none" is a valid descriptor meaning no infra setup needed.
Infrastructure provisions and configures the runtime environment required by applications and services. In SBX, infrastructure is managed through Docker Compose services, port registries, and automated provisioning via docker exec (dev) or SSH scripts (remote, Decision #0249). Database schemas, users, and extensions are created through sbx infra provision — never through manual SQL commands.
Layer Guidance
- PD
- Pure — no infrastructure dependencies
- MD
- Requires: postgres connection pool (DB_URL, DB_SCHEMA)
- SI
- Requires: HTTP server (listen on registered port), postgres via md
- UI
- Requires: API endpoint (PUBLIC_API_URL), browser DOM
SDLC Phases
Examples
- Multi-instance database provisioning Decision 0108 — Unified Persistence Management Architecture