is there a way to register different flows so that...
# prefect-community
m
is there a way to register different flows so that they are run with different environment variables? something like
Copy code
Flow.register("foo", extra_env_variables={"ENV": "foo"})
Flow.register("bar", extra_env_variables={"ENV": "bar"})
k
The RunConfig takes an
env
parameter. You would add it there
m
ah, perfect, i think this is exactly what i was looking for, thanks @Kevin Kho 🙂
👍 1