Fork me on GitHub
#pedestal
<
2023-07-21
>
steven kent19:07:38

Do you have to user a .war file to deploy a Pedestal service? Can it be a .jar instead? Also, doing this with deps.edn, does anyone have any pointers to documentation (I saw this https://clojure.atlassian.net/browse/TBUILD-21 & http://pedestal.io/guides/war-deployment). Also, does anyone have experience deploying a Pedestal service to Azure App Service? Any advice on that? Thank you

hlship19:07:44

Generally, you stand up an embedded Jetty (or Tomcat) instance as part of your application, but building and deploying a WAR file is also supported.

phill22:07:28

It looks like a rarely-taken path. A crucial part is not there - A link or precise reference to "the Pedestal template", from which you should copy some functions, would be a good addition.

phill22:07:55

But OP wanted to use a jar instead, and indeed that is very easy to do with Pedestal, such as by following the Hello World tutorial at http://pedestal.io/guides/.