I am currently looking at GRPC for my real time needs.
I noticed in the examples that we are explicitly required to bind to an hardcoded port in the Server.
I hope to deploy the Server on a Stack like Heroku.
Imagine I set the port to 9090 and that port is currently in use by another service won't that cause issues?
I was expecting a dynamic port allocation as encouraged by process.env.PORT
Any insights would be greatly appreciated.