PandaStack
Self-hosting

Deploy on-prem

Run PandaStack on your own bare-metal hardware.

On-prem deployments run the PandaStack API, dashboard, scheduler, and one or more sandbox agents on your hardware. The pandastack CLI does not deploy clusters; use your infrastructure tooling to run the services, then point clients at the API.

Domains

For hosted PandaStack:

  • Marketing: pandastack.ai
  • Dashboard: app.pandastack.ai
  • API: api.pandastack.ai
  • Docs: docs.pandastack.ai

For an on-prem deployment, expose your own HTTPS API origin and set:

export PANDASTACK_API=https://api.pandastack.ai
export PANDASTACK_API_KEY=pds_abc123def456...

Replace the API URL with your private origin when self-hosting.

Install local tools

npm install -g @pandastack/sdk   # provides the `pandastack` command

Validate the deployment

curl -fsS https://api.pandastack.ai/healthz
curl -fsS https://api.pandastack.ai/version

pandastack me
pandastack template list
pandastack sandbox create --template base --ttl 3600
pandastack sandbox list

Operational checks

pandastack sandbox logs <id> --stream both
pandastack sandbox exec <id> -- uname -a
pandastack sandbox preview-url <id> --port 3000
pandastack sandbox delete <id>

On this page