async build_good_things(
backend: BackendStuff, frontend: FrontendStuff,
cloud: Union[GCP, Azure], monitor_tool: Monitoring
) -> None:
# Let's build the back
backend.build().connect(postgresql)
# Then connect with the front
frontend.build().connect(backend)
# Serve them
cloud.host(backend, frontend)
# Don't forget to monitor closely
monitor_tool.monitor(cloud)
asyncio.run(ci.manage(build_good_things()))
- Drop a message in
quanghuy1242/quanghuy1242
repo - Mail to [email protected]