-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.clj
34 lines (33 loc) · 1.33 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
(defproject luminus-upload-files "0.1.0-SNAPSHOT"
:description "FIXME: write description"
:url "http://example.com/FIXME"
:dependencies [[org.clojure/clojure "1.6.0"]
[lib-noir "0.8.4"]
[ring-server "0.3.1"]
[selmer "0.6.9"]
[com.taoensso/timbre "3.2.1"]
[com.taoensso/tower "2.0.2"]
[markdown-clj "0.9.47"]
[environ "0.5.0"]
[im.chit/cronj "1.0.1"]
[noir-exception "0.2.2"]]
:repl-options {:init-ns luminus-upload-files.repl}
:jvm-opts ["-server"]
:plugins [[lein-ring "0.8.10"]
[lein-environ "0.5.0"]]
:ring {:handler luminus-upload-files.handler/app
;; :init luminus-upload-files.handler/init
;; :destroy luminus-upload-files.handler/destroy
}
:profiles
{:uberjar {:aot :all}
:production {:ring {:open-browser? false
:stacktraces? false
:auto-reload? false}}
:dev {:dependencies [[ring-mock "0.1.5"]
[ring/ring-devel "1.3.0"]
[pjstadig/humane-test-output "0.6.0"]]
:injections [(require 'pjstadig.humane-test-output)
(pjstadig.humane-test-output/activate!)]
:env {:dev true}}}
:min-lein-version "2.0.0")