Answers for "heroku no web processes running spring boot"

0

heroku no web processes running spring boot

Create Procfile with just

web: java -Dspring.profiles.active=default -Dserver.port=$PORT -jar target/*.jar

then on the heroku CLI :

heroku ps:scale web=1
Posted by: Guest on December-10-2020

Code answers related to "heroku no web processes running spring boot"

Browse Popular Code Answers by Language