Endpoints
Cloud compiler API endpoints, request format, and response details.
The cloud compiler API is hosted at https://compiler.quickback.dev.
Public (No Auth)
| Endpoint | Method | Description |
|---|---|---|
/health | GET | Health check |
/templates | GET | List available templates |
Authenticated
| Endpoint | Method | Description |
|---|---|---|
/compile | POST | Compile definitions into backend files |
The /compile endpoint requires either a session token (from quickback login) or an API key (via QUICKBACK_API_KEY header). See Authentication for details.
Environment Variables
| Variable | Description |
|---|---|
QUICKBACK_API_KEY | API key for authentication (alternative to quickback login) |
QUICKBACK_API_URL | Override compiler API URL (default: https://compiler.quickback.dev) |
Custom Compiler URL
Point the CLI to a different compiler (local or custom):
QUICKBACK_API_URL=http://localhost:3020 quickback compileSee Local Compiler for running the compiler locally with Docker.