Added Luminus app skeleton; added ADL.
This commit is contained in:
parent
8a923c1b33
commit
f3c0e728a4
52 changed files with 1761 additions and 0 deletions
19
env/dev/cljs/pastoralist/app.cljs
vendored
Normal file
19
env/dev/cljs/pastoralist/app.cljs
vendored
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
(ns^:figwheel-no-load pastoralist.app
|
||||
(:require
|
||||
[pastoralist.core :as core]
|
||||
[cljs.spec.alpha :as s]
|
||||
[expound.alpha :as expound]
|
||||
[devtools.core :as devtools]))
|
||||
|
||||
(extend-protocol IPrintWithWriter
|
||||
js/Symbol
|
||||
(-pr-writer [sym writer _]
|
||||
(-write writer (str "\"" (.toString sym) "\""))))
|
||||
|
||||
(set! s/*explain-out* expound/printer)
|
||||
|
||||
(enable-console-print!)
|
||||
|
||||
(devtools/install!)
|
||||
|
||||
(core/init! true)
|
||||
Loading…
Add table
Add a link
Reference in a new issue