The Moru Dashboard provides a web interface for viewing and managing your templates.
Accessing Templates
- Navigate to moru.io/dashboard
- Click on Templates in the sidebar
- View your team’s templates
Template List
The templates list shows:
| Column | Description |
|---|
| Name | Template alias/name |
| Template ID | Unique identifier |
| Access | Public or Private |
| vCPUs | CPU cores |
| RAM | Memory in MB |
| Disk | Disk size in MB |
| Created | Creation date |
| envd Version | Environment daemon version |
Template Details
Click on a template to view:
- Overview: Basic information and usage stats
- Build History: Previous builds with logs
- Configuration: Template settings
- Usage: Code examples for using the template
Build History
View previous builds:
- Click on a template
- Select the Builds tab
- See all build attempts with status
Build statuses:
- Building: Build in progress
- Success: Build completed successfully
- Failed: Build failed (click for logs)
Build Logs
View build logs:
- Go to template details
- Click on a build in the history
- View real-time or historical logs
Logs include:
- Package installation output
- File copy operations
- Command execution results
- Error messages
Creating Templates
While templates are typically created via SDK or CLI, you can view build status and logs in the dashboard.
# Create template via CLI
moru template create my-app --dockerfile ./Dockerfile
Then view progress in the dashboard.
Deleting Templates
Deleting a template is permanent. Sandboxes using this template cannot be created after deletion.
- Go to template details
- Click Delete Template
- Confirm deletion
Or use the CLI:
moru template delete my-template
Publishing Templates
Make a template public (available to all Moru users):
- Go to template details
- Click Publish
- Confirm the action
Or use the CLI:
moru template publish my-template
Unpublishing Templates
Make a template private (only your team):
- Go to template details
- Click Unpublish
- Confirm the action
moru template unpublish my-template
Team Templates
Templates belong to teams. To switch teams:
- Click your team name in the header
- Select a different team
- View that team’s templates
Template Quotas
All accounts have the same template limits:
| Resource | Limit |
|---|
| Max templates | Unlimited |
| Concurrent template builds | 5 |
Need higher build concurrency? Contact us at hi@moru.io.
Next Steps