Viktor
03/03/2026, 5:51 PMMarvin
03/03/2026, 5:51 PMNate
03/03/2026, 5:52 PMsplit between dev and prod?
Nate
03/03/2026, 5:52 PMMarvin
03/03/2026, 5:56 PMprefect profile create dev
prefect profile use dev
prefect config set PREFECT_API_URL=<https://prefect-dev.internal/api>
prefect profile create prod
prefect profile use prod
prefect config set PREFECT_API_URL=<https://prefect-prod.internal/api>
# Check settings
prefect config view
Notes
- You can add tags like env:dev or env:prod for filtering and concurrency policies, but they are not isolation—separate servers are.
- For HA/multi-instance servers, ensure Postgres (not SQLite) and Redis are configured; run DB migrations once per environment before scaling API replicas.
Helpful docs
- Self-hosted scaling and HA: Scaling self-hosted Server
- Docker Compose example: Server with Docker Compose
- Helm chart (Kubernetes): Server Helm deployment
- Settings and profiles (e.g., PREFECT_API_URL): Manage settings & profiles
Want me to share a minimal docker-compose pair (dev/prod) or a Helm values.yaml example depending on where you’re deploying? Are you on Kubernetes or Docker today?Viktor
03/03/2026, 5:57 PMNate
03/03/2026, 5:58 PMsome-flow/dev-deployment vs some-flow/prd-deploymentViktor
03/03/2026, 5:59 PMNate
03/03/2026, 5:59 PMViktor
03/03/2026, 6:07 PMNate
03/03/2026, 6:08 PMViktor
03/03/2026, 6:11 PM