Mike B
02/08/2025, 6:07 PMNate
02/08/2025, 8:04 PMNate
02/08/2025, 8:05 PMMarvin
02/08/2025, 8:05 PMNate
02/08/2025, 8:05 PMNate
02/08/2025, 8:10 PMUsing code-based deployments instead of prefect.yaml files wherever possiblethis example (https://github.com/zzstoatzz/prefect-pack/tree/main/flows/with_special_deps) is cloning the code, but switching to baking code in the image is just removing
from_source
and updating the dockerfile to copy the code
Setting up 3 environments: local (on each dev's machine, using Prefect OSS installed locally in Docker as their back-end), dev (a Prefect cloud environment), and Prod (another Prefect cloud environment).use profiles
prefect profile --help
: users can have local
dev
and prod
each with their own PREFECT_API_URL etc
Creating CI/CD scripts that automatically deploy any workflows that have changed since the last PR mergehttps://github.com/zzstoatzz/prefect-monorepo/blob/main/.github/workflows/env-separated-deploy.yml
Mike B
02/08/2025, 10:52 PM