Moving from cPanel? Your whole site imports in one clickMoving from cPanel? One-click import
Project features

Build & runtime logs

Watch your build compile and your container run, live. Orizon streams both build logs and runtime logs over WebSocket in the dashboard, and the CLI tails them in your terminal.

Build logs

While a deployment builds, its logs stream in real time so you can see dependency installs, compile output, and any errors as they happen. If a build fails, the logs show exactly where.

Runtime logs

Once your app is running, switch to runtime logs to see your container's stdout/stderr — requests, application logs, and crashes. Use the source=runtime parameter on the logs endpoint to read runtime instead of build logs.

From the CLI

shell
orizon logs --follow            # tail the latest deployment live
orizon logs --project proj_123  # for a specific project

From the API

shell
# Build logs (default)
curl https://api.orizon.ng/api/v1/deployments/dep_123/logs \
  -H "Authorization: Bearer orz_pk_your_key"

# Runtime logs
curl "https://api.orizon.ng/api/v1/deployments/dep_123/logs?source=runtime" \
  -H "Authorization: Bearer orz_pk_your_key"
Live streamingThe dashboard streams logs over an authenticated WebSocket using a short-lived token, so you get output the instant it's produced rather than polling.