Fork me on GitHub
#boot
<
2018-12-06
>
lispyclouds21:12:56

Hello, Im new to boot and am trying it out on a project of mine in place of leiningen. It runs a aleph HTTP server in main I have defined the run task like this:

(require '[bob.main :as app])
(deftask run []
  (with-pass-thru fs
    (app/-main)))
But im unable to keep the server running as it immediately exits. It seems to be similar to https://github.com/boot-clj/boot/issues/527 Any way to help around this?

alandipert23:12:31

@rahul080327 have you tried adding the wait task to the end of your pipeline?

lambdalove 4