0
votes

I'm looking for the way to deploy my app in Heroku with Jetty Runner. By not using Heroku Git (Deploy your application to Heroku ) as way of deployment.

heroku war:deploy <path_to_war_file> --app <app_name>

Will run the war with Tomcat Web Runner according to this documentation Deployment with the Heroku CLI.

The Heroku CLI Deploy Plugin deploys a local WAR file to Heroku and runs it with Tomcat Webapp-Runner

I would like to know if there's a Jetty Runner equivalent.

1

1 Answers

0
votes

Here is the one from heroku devcenter.

  • Ensure you have your Procfile created as mentioned in the article
  • Optinally ensure to run heroku ps:scale web=1 to allocate a dyno to your project