immutant

http://immutant.org Note: dev discussion happens in #immutant on FreeNode IRC.
jgdavey 2015-09-18T18:05:24.000015Z

I haven’t been able to find a good guide for deploying without immutant/web without WildFly. Any pointers? Should immutant be deploying behind something like nginx, or listening on port 80 itself?

2015-09-18T18:10:04.000016Z

the standard approach is the same for any clojure jar-based app - most folks put nginx up front. that makes it easy to have a hot backup, or do show a maintenance page when redeploying the app, etc

jgdavey 2015-09-18T18:12:06.000017Z

That makes sense. What’s the packaging up story? Any docs I’m missing? Looking for something like lein uberjar (or preferably boot uber jar). What’s the entrypoint?

2015-09-18T18:12:52.000018Z

either of those would work - you would just need to specify a :main, and from that main call immutant.web/run

jgdavey 2015-09-18T18:22:01.000020Z

Thank you!

2015-09-18T18:22:41.000021Z

my pleasure!