nandi/frqpublic Fork 0
c6506f24d087180ee898d7c93779070dc4ca4b0a
Commits
Clone
git clone https://git.rickub.com/nandi/frq.git
git clone ssh://git@rickub.com/nandi/frq.git

Host key fingerprint (ed25519): SHA256:iycHnxEyq0Q7uyVpB7JlznP0G7JrTPXLYRcAU5CSLhc — verify it before your first connect.

deps.edn · 18 lines · 809 BClojure Blame HistoryRaw
Split the tree three ways, and let the phone be Flutter's 7070931 nandi 7d ago1{;; The ClojureDart half. `../common` is the same directory `../deps.edn` puts
2 ;; on jolt's classpath — one copy of frq.clock, frq.store and frq.io, compiled
3 ;; twice. ClojureDart reads .cljd and .cljc and never .clj, which is why
4 ;; everything shared is .cljc and everything jolt-only stays .clj: the
5 ;; extension is the boundary, enforced by the compiler rather than by
6 ;; convention.
7 :paths ["src" "../common"]
8
9 :deps {tensegritics/clojuredart
10 {:git/url "https://github.com/Tensegritics/ClojureDart.git"
Build the APK, out of ClojureDart and Flutter e2b0e6b nandi 7d ago11 ;; ClojureDart HEAD as of 2026-09-12. It has no releases; a sha is
12 ;; the only pin there is.
13 :git/sha "dfa7a0c83e0902aae23df992ded3fb7f8b577bc6"}}
Split the tree three ways, and let the phone be Flutter's 7070931 nandi 7d ago14
15 :aliases {:cljd {:main-opts ["-m" "cljd.build"]}}
16
17 :cljd/opts {:kind :flutter
18 :main frq.main}}