hello there! Is there an aleph starter template out there somewhere you guys are using. I'm starting from scratch and decided to give aleph a try.
what are you looking for a template to provide?
i found those examples to be enough when i first started using it
but it probably depends what other libraries you want to integrate with and which parts of aleph you're looking to use
ideally I'd like one with aleph providing the server side and reagent providing the client side all neatly packaged in one repository. I guess I'm too lazy to read the leiningen docs 🙂
aleph is very much like ring, so i don't think it would too hard to take a ring-based template, rip out the ring part, and put in aleph
like this https://github.com/reagent-project/reagent-template or https://github.com/Day8/re-frame-template
if you used that reagent one, i think you could just take the resulting src/clj/reagent/server.clj
and change the ring-adapter-jetty/run-jetty
call to aleph.http/start-server
then just change the handler functions for the compojure routes to return manifold deferred
's or aleph's websocket-connection
, like in the examples
but i'm not aware of an aleph/reagent lein template
and i'm no expert