Good morning! I had a quick question on registering flows.
I'm trying to figure out the best way for our team to deploy our Prefect workflows in production.
From what I can tell, I've seen two ways:
1 - flow.register() in Python
2- export flow to JSON and import using graphql
For option 1, we have a unique situation where we can't run Python command in our production environment. For option 2, some of the docker storage info changes from development to production which means we have to edit the JSON files.
So, hopefully a simple question - are there other/better ways to package a workflow for deployment that I might be missing? I can run Python commands in development, but just not in production.