-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathshadow-cljs.edn
74 lines (69 loc) · 4.19 KB
/
shadow-cljs.edn
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{:nrepl {:port 8777}
:source-paths ["src" "test"]
:dependencies [[reagent "1.2.0"]
[reagent-utils "0.3.4"]
[re-frame "1.2.0"]
[com.andrewmcveigh/cljs-time "0.5.0"]
[bidi "2.1.6"]
[clj-commons/pushy "0.3.10"]
[cider/cider-nrepl "0.28.5"]
[binaryage/devtools "1.0.3"]
[re-frisk "1.6.0"]]
:dev-http
{8280 "resources/public"
8290 "target/browser-test"}
:builds
{:hoop-ui
{:target :browser
:output-dir "resources/public/js"
:asset-path "/js"
:modules {:app {:init-fn webapp.core/init}}
:devtools {:preloads [re-frisk.preload]
:http-root "resources/public/"}
:dev {:compiler-options {:source-map-detail-level :all
:closure-defines
{webapp.env/release-type "development"
webapp.env/segment-write-key #shadow/env ["SEGMENT_WRITE_KEY" "043Lv52mAcoGOHWVq7n3bxZAVvocyqx0"]
webapp.env/canny-id #shadow/env ["CANNY_ID" "650f50a3e71cb50a018f6e7b"]
webapp.env/sentry-sample-rate #shadow/env ["SENTRY_SAMPLE_RATE" "1.0"]
webapp.env/sentry-dsn #shadow/env ["SENTRY_DSN"
"https://38e03773be6b0d77219d6678a90ed6a5@o4504559799566336.ingest.us.sentry.io/4508377639092224"]
webapp.env/api-endpoint #shadow/env ["GATEWAY_URL"
"http://localhost:8009/api"]
webapp.env/hoop-app-url #shadow/env ["HOOP_APP_URL"
"http://localhost:8270"]
webapp.env/webapp-url #shadow/env ["ASSETS_URL"
"http://localhost:8280"]
webapp.env/api-url #shadow/env ["API_URL"
"http://localhost:8009/api"]}}}
:release {:compiler-options {:output-to "resources/public/js"
:output-dir "resources/public/js"
:source-map true
:source-maps "resources/public/js/app.js.map"
:pretty-print true
:pseudo-names true
:source-map-detail-level :all
:closure-defines
{webapp.env/release-type "hoop-ui"
webapp.env/segment-write-key #shadow/env ["SEGMENT_WRITE_KEY" "043Lv52mAcoGOHWVq7n3bxZAVvocyqx0"]
webapp.env/canny-id #shadow/env ["CANNY_ID" "650f50a3e71cb50a018f6e7b"]
webapp.env/sentry-sample-rate #shadow/env ["SENTRY_SAMPLE_RATE" "1.0"]
webapp.env/sentry-dsn #shadow/env ["SENTRY_DSN"
"https://b2bf390e5cd94bfc83c0005312d796fd@o919346.ingest.sentry.io/6707471"]
webapp.env/api-endpoint #shadow/env ["GATEWAY_URL"
"http://localhost:8009/api"]
webapp.env/hoop-app-url #shadow/env ["HOOP_APP_URL"
"http://localhost:8270"]
webapp.env/webapp-url #shadow/env ["ASSETS_URL"
"http://localhost:8280"]
webapp.env/api-url #shadow/env ["API_URL"
"http://localhost:8009/api"]}}
:build-options {}}}
;; end :hoop-ui
:browser-test {:target :browser-test
:ns-regexp "-test$"
:runner-ns shadow.test.browser
:test-dir "target/browser-test"}
:karma-test {:target :karma
:ns-regexp "-test$"
:output-to "target/karma-test.js"}}}