boot

:boot-clj: https://boot-clj.github.io/ — build tooling for Clojure. Dev chat in #boot-dev
lispyclouds 2018-12-06T21:03:56.009Z

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?

lispyclouds 2018-12-06T21:14:01.009600Z

This is my main.clj file: https://github.com/bob-cd/bob/blob/master/src/bob/main.clj

2018-12-06T23:16:31.010400Z

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

1