Caricamento in corso...
Caricamento in corso...
Last synced: Today, 22:00
Technical reference for the OpenClaw framework. Real-time synchronization with the official documentation engine.
Use this file to discover all available pages before exploring further.
Deploy OpenClaw on Render using Infrastructure as Code. The included
render.yamlClicking this link will:
render.yamlOnce deployed, your service URL follows the pattern
https://<service-name>.onrender.comRender Blueprints are YAML files that define your infrastructure. The
render.yamlyamlservices: - type: web name: openclaw runtime: docker plan: starter healthCheckPath: /health envVars: - key: OPENCLAW_GATEWAY_PORT value: "8080" - key: OPENCLAW_STATE_DIR value: /data/.openclaw - key: OPENCLAW_WORKSPACE_DIR value: /data/workspace - key: OPENCLAW_GATEWAY_TOKEN generateValue: true # auto-generates a secure token disk: name: openclaw-data mountPath: /data sizeGB: 1
Key Blueprint features used:
| Feature | Purpose |
|---|---|
text runtime: docker | Builds from the repo's Dockerfile |
text healthCheckPath | Render monitors text /health |
text generateValue: true | Auto-generates a cryptographically secure value |
text disk | Persistent storage that survives redeploys |
| Plan | Spin-down | Disk | Best for |
|---|---|---|---|
| Free | After 15 min idle | Not available | Testing, demos |
| Starter | Never | 1GB+ | Personal use, small teams |
| Standard+ | Never | 1GB+ | Production, multiple channels |
The Blueprint defaults to
starterplan: freerender.yamlThe web dashboard is available at
https://<your-service>.onrender.com/Connect using the configured shared secret. This deploy template auto-generates
OPENCLAW_GATEWAY_TOKENView real-time logs in Dashboard → your service → Logs. Filter by:
For debugging, open a shell session via Dashboard → your service → Shell. The persistent disk is mounted at
/dataModify variables in Dashboard → your service → Environment. Changes trigger an automatic redeploy.
If you use the original OpenClaw repository, Render will not auto-deploy your OpenClaw. To update it, run a manual Blueprint sync from the dashboard.
*.onrender.comRender supports horizontal and vertical scaling:
For OpenClaw, vertical scaling is usually sufficient. Horizontal scaling requires sticky sessions or external state management.
Export your state, config, auth profiles, and workspace at any time using the shell access in the Render Dashboard:
bashopenclaw backup create
This creates a portable backup archive with OpenClaw state plus any configured workspace. See Backup for details.
Check the deploy logs in the Render Dashboard. Common issues:
OPENCLAW_GATEWAY_TOKENOPENCLAW_GATEWAY_PORT=8080Free tier services spin down after 15 minutes of inactivity. The first request after spin-down takes a few seconds while the container starts. Upgrade to Starter plan for always-on.
This happens on free tier (no persistent disk). Upgrade to a paid plan, or regularly export a full backup via
openclaw backup createRender expects a 200 response from
/healthdocker build && docker run© 2024 TaskFlow Mirror
Powered by TaskFlow Sync Engine