Hey guys. So I'm building a simple FastAPI application connected with Zapier to summarise incoming newsletters to a Notion db.
The app seems to have run as I do get:
INFO: Started server process [1]
INFO: Waiting for application startup.
INFO: Application startup complete.
INFO: Uvicorn running on http://0.0.0.0:10000 (Press CTRL+C to quit)
in deploy logs.
But on the hosted URL, I get Application failed to respond and on Zapier I get a 502 error. I have added the start command uvicorn main:app --host 0.0.0.0 --port 10000 for the FastAPI app. Any help appreciated thanks