-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.clj
More file actions
21 lines (21 loc) · 741 Bytes
/
Copy pathproject.clj
File metadata and controls
21 lines (21 loc) · 741 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
(defproject me "0.1.0-SNAPSHOT"
:description "FIXME: write description"
:url "http://example.com/FIXME"
:dependencies [[org.clojure/clojure "1.6.0"]
[compojure "1.1.6"]
[hiccup "1.0.5"]
[ring-server "0.3.1"]]
:min-lein-version "2.0.0"
:uberjar_name "me.jar"
:main me.server
:plugins [[lein-ring "0.8.12"]]
:ring {:handler me.handler/app
:init me.handler/init
:destroy me.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.1"]]}})