Andy Dienes
04/10/2023, 2:46 AMunhealthy
. is there anything I can do to fix this, or is it just because I have a very new / unpaid account?redsquare
04/10/2023, 6:44 AMAndy Dienes
04/10/2023, 12:54 PMfrom prefect import flow
from prefect.deployments import Deployment
@flow(log_prints=True)
def hi():
print("Hi from Prefect! 🤗")
def deploy():
deployment = Deployment.build_from_flow(
flow=hi,
name="prefect-example-deployment"
)
deployment.apply()
if __name__ == "__main__":
deploy()
are these steps outdated?Adam
04/10/2023, 12:55 PMprefect agent start --pool default-agent-pool
Adam
04/10/2023, 12:55 PMAndy Dienes
04/10/2023, 12:56 PMAndy Dienes
04/10/2023, 12:57 PMAndy Dienes
04/10/2023, 12:57 PMAdam
04/10/2023, 1:10 PMAndy Dienes
04/10/2023, 1:15 PMredsquare
04/10/2023, 1:31 PMredsquare
04/10/2023, 1:44 PMAndy Dienes
04/10/2023, 1:47 PMredsquare
04/10/2023, 3:05 PMAdam
04/10/2023, 3:10 PMredsquare
04/10/2023, 3:10 PM