Leon Kozlowski
06/09/2021, 9:20 PMLeon Kozlowski
06/09/2021, 9:21 PMservices/
service_one/
src/
__init__.py
tasks.py (holds all task definitions)
build.py (holds flow definition via context manager)
deploy.py (holds storage, run config, and schedule)
Dockerfile
service_two/
. (etc)
What I am trying to do is utilize the prefect register
command to register each flow in the services/
folder but storing them each independently
Something like:
$ prefect register --project <PROJECT> --path services/ --label <LABEL>
Which I know will not work work due to the fact that the flow definitions are buried in the sub directories.Kevin Kho
Makefile
and use that unfortunately. We’ll see if the community has other ideas.Leon Kozlowski
06/09/2021, 10:29 PM