App hanging on "Deploy in Progress"

My App, a very basic hello world server written in Rust and Rocket v0.5 is hanging forever on “Deploy in Progress”. The logs say it’s available on 127.0.0.1:10000 but it’s unreachable with a browser or curl. Works fine locally.

Dashboard link: Render · The Easiest Cloud For All Your Apps

Based on the minimal example from the rocket docs: Rocket - Simple, Fast, Type-Safe Web Framework for Rust

It’s also affecting a larger app, but this is a minimal example that displays the same problem.

Answer:

The app needs a Rocket.toml in the root, with the contents:

[release]
address = "0.0.0.0"

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.