nandi/frqpublic Fork 0
707093199019d7a222073965b5b2acfb3c7e8f04
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.

Split the tree three ways, and let the phone be Flutter's 7070931 · on 707093199019d7a222073965b5b2acfb3c7e8f04 · nandi · 7d ago
deps.edn · 17 lines · 737 BClojure Blame HistoryRaw
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
{;; The ClojureDart half. `../common` is the same directory `../deps.edn` puts
 ;; on jolt's classpath — one copy of frq.clock, frq.store and frq.io, compiled
 ;; twice. ClojureDart reads .cljd and .cljc and never .clj, which is why
 ;; everything shared is .cljc and everything jolt-only stays .clj: the
 ;; extension is the boundary, enforced by the compiler rather than by
 ;; convention.
 :paths ["src" "../common"]

 :deps {tensegritics/clojuredart
        {:git/url "https://github.com/Tensegritics/ClojureDart.git"
         ;; UNPINNED. Nothing builds this yet — see flutter/README.md.
         :git/sha "PIN-ME"}}

 :aliases {:cljd {:main-opts ["-m" "cljd.build"]}}

 :cljd/opts {:kind :flutter
             :main frq.main}}