Deployments
Forgeon deployments: environments, rollouts, runtime state, and operational controls.
Last updated: 2026-03-17
Forgeon deployments are built around environments, a build pipeline, and runtime state. This is the top‑level guide for how deploys work end‑to‑end.
flowchart LR A[Intake] --> B[Build] B --> C[Artifact] C --> D[Runtime start] D --> E[Health checks] E --> F[Route traffic]
The deployment model
- Environment — prod / uat / qa / staging / dev / preview
- Deployment — a build artifact + runtime config for an env
- Runtime — running container(s) with live traffic state
Typical workflow
- Deploy to
previewfor PRs - Validate in
staging - Deploy to
prod
What you can control
- Build system (Template / Nixpacks / Buildpacks)
- Build and start commands
- Environment variables per env
- Rollouts and restarts
- Domains and SSL
Troubleshooting
App not reachable
- Ensure your app uses
PORTand binds to0.0.0.0
Runtime shows “Idle” but should be live
- Check last request, domain configuration, and health checks