@jon324 the aleph-example is in the blog:
(defn ring->aleph [handler]
(fn [request]
(let [response (d/deferred)]
(handler request #(d/success! response %) #(d/error! response %))
response)))
@jon324 how are you starting your webapp?
I wound up sticking with aleph and using manifold streams instead.