biff

A web framework + self-hosted deployment solution for Clojure. Repo: https://github.com/jacobobryant/biff. Docs: https://biff.findka.com
2020-10-15T01:14:44.008400Z

@grumplet I imagine this won't take too long to get resolved, but in the mean time, you can comment out the clj -Sresolve-tags line and add the sha manually. Replace deps.edn with this:

{:paths ["src" "resources"]
 :aliases {:cljs {:extra-deps {org.clojure/clojurescript {:mvn/version "1.10.520"}
                               thheller/shadow-cljs {:mvn/version "2.8.40"}
                               binaryage/devtools {:mvn/version "0.9.10"}
                               binaryage/oops {:mvn/version "0.7.0"}
                               cljs-http/cljs-http {:mvn/version "0.1.46"}}}}
 :deps
 {github-jacobobryant/biff
  {:git/url "<https://github.com/jacobobryant/biff>"
   :tag "HEAD"
   :sha "b2b575fc47faafe3d752798a0172f4dc2a451b44"}}}

grumplet 2020-10-15T08:46:45.010300Z

Thanks Jacob.

👍 1