-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
95 lines (86 loc) · 3.21 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
(defproject recipes "0.1.0-SNAPSHOT"
:description "FIXME: write description"
:url "http://example.com/FIXME"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:source-paths ["src/clj" "src/cljs"]
:dependencies [[org.clojure/clojure "1.6.0"]
[com.facebook/react "0.11.2"]
[reagent "0.4.3"]
[reagent-forms "0.4.3"]
[reagent-utils "0.1.2"]
[cljs-ajax "0.3.4"]
[lib-noir "0.9.5"]
[secretary "1.2.1"]
[org.clojure/clojurescript "0.0-2719" :scope "provided"]
[com.cemerick/piggieback "0.1.5"]
[weasel "0.5.0"]
[ring "1.3.2"]
[ring/ring-defaults "0.1.3"]
[prone "0.8.0"]
[com.taoensso/tower "3.0.2"]
[markdown-clj "0.9.58" :exclusions [com.keminglabs/cljx]]
[im.chit/cronj "1.4.3"]
[noir-exception "0.2.3"]
[compojure "1.3.1"]
[selmer "0.8.0"]
[environ "1.0.0"]
[leiningen "2.5.1"]
[figwheel "0.2.2-SNAPSHOT"]
[org.clojure/java.jdbc "0.3.6"]
[postgresql/postgresql "8.4-702.jdbc4"]
[lobos "1.0.0-beta3"]
[korma "0.4.0"]]
:plugins [
[lein-cljsbuild "1.0.4"]
[lein-environ "1.0.0"]
[lein-ring "0.9.0"]
[lein-asset-minifier "0.2.2"]]
:ring
{:handler recipes.handler/app
:init recipes.handler/init
:destroy recipes.handler/destroy
:uberwar-name "recipes.war"}
:min-lein-version "2.5.0"
:uberjar-name "recipes.jar"
:main recipes.server
:clean-targets ^{:protect false} ["resources/public/js"]
:minify-assets
{:assets {"resources/public/css/site.min.css" "resources/public/css/site.css"}}
:cljsbuild {:builds {:app { :source-paths ["src/cljs"]
:compiler { :output-to "resources/public/js/app.js"
:output-dir "resources/public/js/out"
:externs ["react/externs/react.js"]
:optimizations :none
:pretty-print true}}}}
:profiles {
:dev {
:repl-options { :init-ns recipes.handler
:nrepl-middleware [cemerick.piggieback/wrap-cljs-repl]}
:dependencies [[ring-mock "0.1.5"]
[ring/ring-devel "1.3.2"]
[pjstadig/humane-test-output "0.6.0"]]
:plugins [[lein-figwheel "0.2.2-SNAPSHOT"]]
:injections [(require 'pjstadig.humane-test-output)
(pjstadig.humane-test-output/activate!)]
:figwheel { :http-server-root "public"
:server-port 3449
:css-dirs ["resources/public/css"]
:ring-handler recipes.handler/app}
:env {:dev true}
:cljsbuild {:builds {:app { :source-paths ["env/dev/cljs"]
:compiler {:source-map true}}}}}
:uberjar {
:hooks [leiningen.cljsbuild minify-assets.plugin/hooks]
:env {:production true}
:aot :all
:omit-source true
:cljsbuild {:jar true
:builds {:app
{:source-paths ["env/prod/cljs"]
:compiler
{:optimizations :advanced
:pretty-print false}}}}}
:production {:ring {:open-browser? false
:stacktraces? false
:auto-reload? false}}})