forked from clojurebridge-minneapolis/track1-chatter
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathproject.clj
More file actions
33 lines (24 loc) · 963 Bytes
/
project.clj
File metadata and controls
33 lines (24 loc) · 963 Bytes
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
(defproject chatter "0.1.0-SNAPSHOT"
:description "Clojure web app for displaying messages"
:url "https://github.com/AustinClojure/track1-chatter"
:dependencies [[org.clojure/clojure "1.8.0"]
[compojure "1.5.1"]
[ring/ring-jetty-adapter "1.5.0"]
[ring/ring-defaults "0.2.1"]
[hiccup "1.0.5"]
[hickory "0.5.4"]
[environ "1.0.0"]]
:plugins [[lein-ring "0.9.7"]
[lein-environ "1.0.0"]]
:ring {:handler chatter.handler/app}
:profiles
{:dev {:dependencies [[javax.servlet/servlet-api "2.5"]
[ring/ring-mock "0.3.0"]
[kerodon "0.8.0"]]}
:production {:ring {:open-browser? false
:stacktraces? false
:auto-reload? false}
:env {production true}}}
:aot :all
:main chatter.main
:uberjar-name "chatter-standalone.jar")