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?This is my main.clj file: https://github.com/bob-cd/bob/blob/master/src/bob/main.clj
@rahul080327 have you tried adding the wait
task to the end of your pipeline?