Last active
August 31, 2022 16:15
-
-
Save discdiver/05bed30ba661b99e2085096bb7c00db9 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from demo import pipeline | |
from prefect.deployments import Deployment | |
deployment = Deployment.build_from_flow( | |
flow=pipeline, | |
name="Python Deployment Example", | |
) | |
if __name__ == "__main__": | |
deployment.apply() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment