sota.io

sota logs

View build and runtime logs for the current project.

Usage

sota logs
sota logs -f

Options

FlagDescription
-f, --followStream logs in real-time

Examples

View recent logs:

$ sota logs

[build] Detecting framework... Next.js
[build] Installing dependencies...
[build] Building application...
[build] Image built: sha256:abc123
[deploy] Starting container...
[deploy] Health check passed
[deploy] Live at https://my-app.sota.io

Follow logs in real-time:

$ sota logs -f

[runtime] Server listening on port 8080
[runtime] GET / 200 12ms
[runtime] GET /api/health 200 1ms

Press Ctrl+C to stop following.

Log Types

TypeDescription
buildOutput from the build process (npm install, framework build)
deployContainer lifecycle events (start, health check, swap)
runtimeApplication stdout/stderr from the running container