CLI
The orizon command-line tool drives the same API the dashboard uses — deploy your working directory, tail logs, and manage env, all from the terminal.
Install
macOS / Linux:
curl -fsSL https://cdn.orzn.space/cli/install.sh | shThe installer detects your OS and architecture, drops the orizon binary into /usr/local/bin (falling back to ~/.local/bin), and prints the installed version. Windows builds are available from cdn.orzn.space/cli/latest.
Authenticate
Create a platform API key at dashboard.orizon.ng/api-keys (it looks like orz_pk_…), then log in:
orizon login --key orz_pk_your_key_hereThe key is verified and saved to ~/.orizon/config.json (mode 0600). You can also set ORIZON_API_KEY in your environment — it takes precedence over the saved config, which is handy in CI. Override the endpoint with --api or ORIZON_API_BASE.
Commands
--key orz_pk_…Save and verify an API key(alias: ls)List your projects--project <id>Link the current directory to a projectZip the cwd, upload, deploy, stream logs--followStream a deployment's logspull | pushPull or push environment variablesOpen the project's URL in a browserRun the MCP server (for coding agents)(-v)Print the CLI versionDeploy your working directory
link writes a .orizon.json in the current folder so future commands know which project they target. deploy then zips the directory (skipping node_modules, .git, dist, build, .next, and similar), uploads it, creates a deployment, and streams the build logs.
cd my-app
orizon link --project proj_123
orizon deployStream logs
orizon logs --follow # tail the latest deployment
orizon logs --project proj_123 # for a specific projectEnvironment variables
orizon env pull # print NAME=VALUE for the project
orizon env push .env # set variables from a .env fileOpen the live app
orizon open # opens the production URL in your browser--project <id>, --api <url> and --key <orz_pk_…> to override the project, endpoint and key for a single invocation.MCP server
orizon mcp runs a stdio MCP server so AI coding agents can manage Orizon directly. See Connect coding agents for one-click setup with Claude Code, Cursor and Windsurf.