Templates
Templates are pre-configured services with production-ready defaults.
What Templates Provide
- Docker images with tested versions
- Environment variables with validation and auto-generation
- Networking and volumes configured automatically
- Multi-service stacks with connections pre-wired
Using a Template
- Open the templates panel
- Select a template to add to your canvas
- Fill required fields (passwords can be auto-generated)
- Customize as needed (resources, env vars, networking)
- Deploy
Multi-Service Templates
Some templates deploy complete stacks (app + database + cache) with all connections configured automatically, including service-to-service networking and shared environment variables.Environment Variables
Environment variables configure your services at runtime.Adding Variables
- Select service → Config tab → Environment Variables
- Click “Add Variable”
- Enter key (e.g.,
DATABASE_URL), value, and check “Sensitive” for secrets - Deploy to apply
Common Variables
Accessing in Code
Node.js:process.env.DATABASE_URL
Python: os.environ.get('DATABASE_URL')
Go: os.Getenv("DATABASE_URL")
Deno: Deno.env.get("DATABASE_URL")
Environment-Specific Values
Each environment has independent variables. Production and staging can have different database URLs, API keys, and feature flags without leaking between environments.Resources
Resources define CPU and memory allocation per service.CPU
| Cores | Best For |
|---|---|
| 0.25 | Small APIs, dev environments |
| 0.5 | Lightweight services, workers |
| 1 | Standard web applications |
| 2 | Medium traffic applications |
| 4 | High traffic, CPU-intensive |
Memory
| Memory | Best For |
|---|---|
| 256 MiB | Tiny services |
| 512 MiB | Small applications |
| 1 GiB | Standard applications |
| 2 GiB | Medium applications |
| 4 GiB | Large apps, databases |
| 8 GiB | Very large applications |
Plan Limits
Resource limits vary by plan (CPU, Memory, Storage, etc.). Check your dashboard for current limits.
Scaling
Scale applications by adding resources (vertical) or replicas (horizontal).Replicas
Replicas are identical copies of your service running simultaneously:- Load Balancing - Traffic distributed automatically
- Redundancy - If one fails, others continue serving
- Rolling Updates - New versions deploy gradually
Setting Replicas
- Select service → Config tab → Replicas
- Set number (e.g., 1, 2, 3, 5)
- Deploy
Volume Limitation
Keep databases at 1 replica and scale the stateless application services that connect to them.Cost
Replicas multiply resource costs:- 1 replica with 1 CPU: 1x cost
- 3 replicas with 1 CPU: 3x cost
Autoscaling (automatic scaling based on metrics) is coming in a future release.
Common Questions
Can I share environment variables between services?
Can I share environment variables between services?
Can I change resources without redeploying?
Can I change resources without redeploying?
No, resource changes require a new deployment.
Can I horizontally scale services with volumes?
Can I horizontally scale services with volumes?
No, services with volumes must have exactly 1 replica.
What happens if I exceed CPU limits?
What happens if I exceed CPU limits?
Service gets throttled (slowed down) but doesn’t crash.
What happens if I exceed memory limits?
What happens if I exceed memory limits?
Service may be killed (OOMKilled) and restarted. Increase memory to prevent this.