Skip to content

Getting Started

Register or sign in to Runta and get your API key.

Terminal window
export RUNTA_TOKEN=rt...

Runta setup currently targets macOS and Linux. Windows is not supported yet.

Linux:

Terminal window
npm install -g @runta/runta-cli

macOS (Apple silicon):

Terminal window
brew install runta-dev/tap/runta

Create a runtime with 2 vCPUs and 2048 MiB of memory, then run a command inside it.

Terminal window
runta run --name demo --cpus 2 --memory 2048
runta exec demo -- echo "Hello from Runta"
runta rm demo

Each example deletes the runtime after the command finishes. If you stop an example before cleanup runs, delete the runtime manually with runta rm demo to stop storage billing.