Can a flow be registered without storage configure...
# ask-community
l
Can a flow be registered without storage configured? Let’s say I want to use docker storage, but I have a separate build and push workflow that I’m using and then just pass the image to my run configuration
k
Maybe
flow.register(…, build=False)
will work for you?
l
I was using the CLI to register, I suppose I could do
prefect build
and then
prefect register
with the
--json
flag from the result from build?
k
That makes sense yep!