nandi/frqpublic Fork 0
ce824252aa511f0e1d68bf8fbf6be9419ab4dfd1
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 · 23 lines · 1.1 KBClojure 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.
Make ../common a dependency rather than a path 95d91a2 nandi 7d ago7 :paths ["src"]
Split the tree three ways, and let the phone be Flutter's 7070931 nandi 7d ago8
Make ../common a dependency rather than a path 95d91a2 nandi 7d ago9 ;; `../common` is a dependency and not a path: tools.deps deprecated `:paths`
10 ;; pointing outside the project, and `:local/root` is what it deprecated them
11 ;; in favour of. common/deps.edn puts the same directory on the classpath.
12 :deps {frq/common {:local/root "../common"}
13
14 tensegritics/clojuredart
Split the tree three ways, and let the phone be Flutter's 7070931 nandi 7d ago15 {:git/url "https://github.com/Tensegritics/ClojureDart.git"
Build the APK, out of ClojureDart and Flutter e2b0e6b nandi 7d ago16 ;; ClojureDart HEAD as of 2026-09-12. It has no releases; a sha is
17 ;; the only pin there is.
18 :git/sha "dfa7a0c83e0902aae23df992ded3fb7f8b577bc6"}}
Split the tree three ways, and let the phone be Flutter's 7070931 nandi 7d ago19
20 :aliases {:cljd {:main-opts ["-m" "cljd.build"]}}
21
22 :cljd/opts {:kind :flutter
23 :main frq.main}}