Devboxes for sharing & collaboration
Devboxes are designed to be shared, reproducible workspaces:
- Share live via URL with anyone in your Morph Cloud organization.
- Collaborate safely: org membership is the boundary for sharing.
- Scale collaboration patterns: create multiple organizations as needed (e.g. per client, team, or project).
Share a devbox (dashboard)
- Open the Devboxes dashboard: https://cloud.morph.so/web/devboxes
- Select a devbox
- Use the Share / Copy link actions to share it with your organization
Share an app preview (HTTP services)
For prototyping and demos, it’s often better to share a preview URL rather than full SSH access:
- Start your web app/API inside the devbox
- Expose it as an HTTP service
- Share the resulting URL with teammates
See Prototyping.
Share a template (CLI)
Templates let you share a standardized starting point (tooling + configuration) so everyone can start from the same baseline.
export MORPH_API_KEY="..."
# List templates and pick one to share
morphcloud devbox template list
TEMPLATE_ID="<template-id>"
# Publish a short alias
morphcloud devbox template share "$TEMPLATE_ID" --alias "<short-alias>"
# Teammates can start devboxes from shared templates in the dashboard:
# https://cloud.morph.so/web/devboxes/new?alias=<short-alias>