Strapi stuck in Deployment

So it seems i had to change the hardcoded host from “localhost” to

host: env(“HOST”, “localhost”),

inside server.js to be able to set a env variable to 0.0.0.0 which is necessary to recognize the app has started.

Got this information from here:

Thanks!