Deployment stuck on "building"

Forgive me if this is a stupid question, but I’m new to deployment and I am trying to get my first app deployed.

For some reason, when deployment is running my build script, it doesn’t move on from building despite reaching the end of my script.

I’ve read through the docs and other topics and I’ve tried binding the app to 0.0.0.0 but it did not solve the issue.

I’m not sure where to proceed from here.

Thanks for reading:D

Your screenshot doesn’t show enough output, but my assumption based on the details is that you’re running your app during the build phase.

The command that starts your app should be the Start Command, not the Build Command. Build commands, whether on the Render Dashboard or as your package.json’s scripts, should not also call start commands.

Thank you SOOO much that did the trick, I honestly didn’t know there was a difference between the two.