> 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
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
"
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
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
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
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