-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
98 lines (97 loc) · 4.02 KB
/
project.clj
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
(defproject easynxc "0.1.0-SNAPSHOT"
:description "Web app for listening to songs at different speeds."
:url "http://github.com/easynxc-clj"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.8.0"]
[ring-server "0.4.0"]
[reagent "0.6.0-rc"]
[reagent-forms "0.5.24"]
[reagent-utils "0.1.9"]
[ring "1.5.0"]
[ring/ring-defaults "0.2.1"]
[compojure "1.5.1"]
[hiccup "1.0.5"]
[yogthos/config "0.8"]
[org.clojure/clojurescript "1.9.93"
:scope "provided"]
[secretary "1.2.3"]
[environ "1.0.3"]
[venantius/accountant "0.1.7"
:exclusions [org.clojure/tools.reader]]
[cljs-ajax "0.5.8"]
[com.cemerick/url "0.1.1"]
[org.clojure/data.json "0.2.6"]
[jarohen/chime "0.1.9"]
[com.taoensso/timbre "4.7.0"]]
:plugins [[lein-environ "1.0.3"]
[lein-cljsbuild "1.1.1"]
[lein-asset-minifier "0.2.7"
:exclusions [org.clojure/clojure]]]
:ring {:handler easynxc.handler/app
:uberwar-name "easynxc.war"}
:min-lein-version "2.5.0"
:uberjar-name "easynxc.jar"
:main easynxc.server
:clean-targets ^{:protect false}
[:target-path
[:cljsbuild :builds :app :compiler :output-dir]
[:cljsbuild :builds :app :compiler :output-to]]
:source-paths ["src/clj" "src/cljc"]
:resource-paths ["resources" "target/cljsbuild"]
:minify-assets
{:assets
{"resources/public/css/site.min.css" "resources/public/css/site.css"}}
:cljsbuild
{:builds {:min
{:source-paths ["src/cljs" "src/cljc" "env/prod/cljs"]
:compiler
{:output-to "target/cljsbuild/public/js/app.js"
:output-dir "target/uberjar"
:optimizations :advanced
:pretty-print false}}
:app
{:source-paths ["src/cljs" "src/cljc" "env/dev/cljs"]
:compiler
{:main "easynxc.dev"
:asset-path "/js/out"
:output-to "target/cljsbuild/public/js/app.js"
:output-dir "target/cljsbuild/public/js/out"
:source-map true
:optimizations :none
:pretty-print true}}}}
:figwheel
{:http-server-root "public"
:server-port 3449
:nrepl-port 7002
:nrepl-middleware ["cemerick.piggieback/wrap-cljs-repl"
"cider.nrepl/cider-middleware"
"refactor-nrepl.middleware/wrap-refactor"]
:css-dirs ["resources/public/css"]
:ring-handler easynxc.handler/app}
:profiles
{:dev {:repl-options {:init-ns easynxc.repl}
:dependencies [[ring/ring-mock "0.3.0"]
[ring/ring-devel "1.5.0"]
[prone "1.1.1"]
[figwheel-sidecar "0.5.4-5"]
[org.clojure/tools.nrepl "0.2.12"]
[com.cemerick/piggieback "0.2.2-SNAPSHOT"]
[pjstadig/humane-test-output "0.8.0"]]
:source-paths ["env/dev/clj"]
:plugins [[lein-figwheel "0.5.4-5"]
[cider/cider-nrepl "0.10.0-SNAPSHOT"]
[org.clojure/tools.namespace "0.3.0-alpha2"
:exclusions [org.clojure/tools.reader]]
[refactor-nrepl "2.0.0-SNAPSHOT"
:exclusions [org.clojure/clojure]]]
:injections [(require 'pjstadig.humane-test-output)
(pjstadig.humane-test-output/activate!)]
:env {:dev true}}
:uberjar {:hooks [minify-assets.plugin/hooks]
:source-paths ["env/prod/clj"]
:prep-tasks ["compile" ["cljsbuild" "once" "min"]]
:env {:production true}
:aot :all
:omit-source true}
:default [:base :system :user :provided :dev :secret]})