catacumba icon indicating copy to clipboard operation
catacumba copied to clipboard

Asynchronous web toolkit for clojure built on top of Ratpack / Netty

Results 5 catacumba issues
Sort by recently updated
recently updated
newest added

Hi, Just wanted to add a snippet of uploading a file example: ``` (defn upload [{:keys [data]}] (.writeTo (:file data) (java.io/FileOutputStream. (str "./downloads/" (.getFileName (:file data)))))) ``` Enjoy!

The documentation says: "If you want to stop the server, you just need to call the .close method on the object returned by the run-server function." There is no `.close`...

I am very new to clojure and now was giving catacumba a try (with leiningen). Following the instructions in the quick start area, there is an error by retrieving the...