Scale up as you grow — whether you're running one virtual machine or ten thousand.

From GPU-powered inference and Kubernetes to managed databases and storage, get everything you need to build, scale, and deploy intelligent applications.

This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
You need to start express. Try replacing <code>./node_modules/grunt-cli/bin/grunt</code> with <code>./node_modules/grunt-cli/bin/grunt start</code>
Hi, After replacing with this ./node_modules/grunt-cli/bin/grunt start in the Procfile <br>Im getting this error logs from the server Warning: Task “start” not found. Use --force to continue. <br> <br> <br>However it successfully deploy and run at heroku using this in my procfile <br>web: ./node_modules/grunt-cli/bin/grunt expressServer:dist:keepalive <br> <br>Here is the repo <br>https://github.com/BernardTolosajr/EAK-heroku <br> <br>Thank you in advance!
I looked at a few files and apparently the server only defines routes for /api/, so your app is running but you’re getting that error simply because you’re not defining any routes other than /api/ (which means that the route “/” is not defined). <br> <br>Are you sure it on heroku?