Environments
Last updated:
Each project has isolated environments, each with its own variables and database — what reaches production passed the stages before it.
From branch to environment
- feature/* branches get a preview per branch.
- develop deploys to the dev environment.
- staging deploys to staging.
- main deploys to production.
Isolation
Each environment is isolated with its own variables, secrets and database. What runs in staging never touches production data.
Variables and secrets
Variables come in two scopes — build and runtime — and secrets are masked in the UI and logs. Edited per environment.
Rolling back
If a deploy fails, the previous version keeps serving, and you can roll back to any earlier deploy in one click from the deploy history.