1
0
Fork 0
mirror of https://github.com/heyarne/airsonic-ui.git synced 2026-05-06 18:33:38 +02:00

Initial commit; shadow-cljs, re-frame + re-frame-10x

This commit is contained in:
Arne Schlüter 2018-04-17 23:42:24 +02:00
commit 4fc35c34b0
11 changed files with 1813 additions and 0 deletions

18
shadow-cljs.edn Normal file
View file

@ -0,0 +1,18 @@
;; shadow-cljs configuration
{:source-paths
["src"]
:dependencies
[[reagent "0.7.0"]
[re-frame "0.10.5"]
[day8.re-frame/re-frame-10x "0.3.2-react16"]]
:builds
{:app {:target :browser
:output-dir "public/app/js"
:asset-path "/app/js"
:closure-defines {"re_frame.trace.trace_enabled_QMARK_" true}
:modules {:main {:entries [airsonic-ui.core]}}
:devtools {:http-root "public"
:http-port 8080
:preloads [day8.re-frame-10x.preload]}}}}