Re: Launching apps

2009-05-09 Thread Richard Newman
> The problem (such as it is) with these solutions is that you still need > to do something to attach to a repl.   A repl is a requirement for us. I've done the screen thing in the past. It works fine, though I have (very rarely) encountered issues with screen locking up or dying a few times over

Re: Launching apps

2009-05-09 Thread Stuart Sierra
On May 8, 6:30 pm, Chris Dean wrote: > How do folks launch their apps? Shell scripts, calling AOT-compiled classes (gen-class with a -main function). -Stuart Sierra --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "

Re: Launching apps

2009-05-09 Thread Baishampayan Ghose
Chris Dean wrote: > For now I'm using hand written scripts that launch under screen. And > that works for us. Would be great if you share those scripts with us. Regards, BG -- Baishampayan Ghose oCricket.com signature.asc Description: OpenPGP digital signature

Re: Launching apps

2009-05-09 Thread Chris Dean
Adrian Cuthbertson writes: > For production server systems running under Linux, I've used apache > commons daemon to get java apps launched Thanks for the info. The problem (such as it is) with these solutions is that you still need to do something to attach to a repl. A repl is a requiremen

Re: Launching apps

2009-05-08 Thread Adrian Cuthbertson
For production server systems running under Linux, I've used apache commons daemon to get java apps launched, for example under root to get port 80 and then su'd to run under the app (non-privileged) userid. The advantage is these can be automatically restarted when the server reboots, or services

Re: Launching apps

2009-05-08 Thread André Thieme
On 9 Mai, 00:30, Chris Dean wrote: > How do folks launch their apps? > > For building (and maybe deploying) it seems that most people use the > Java tools (ant, maven, ivy) or have a 10 line shell script.  For pure > Clojure code you don't even necessarily have to have a build step. > > But how d