forked from ornicar/clojure-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.clj
More file actions
27 lines (26 loc) · 1.01 KB
/
project.clj
File metadata and controls
27 lines (26 loc) · 1.01 KB
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
(defproject prismic-starter "0.1.0-SNAPSHOT"
:description "Starter project for prismic.io"
:url "http://prismic.io"
:dependencies [[org.clojure/clojure "1.5.1"]
[lib-noir "0.8.1"]
[compojure "1.1.6"]
[ring-server "0.3.1"]
[com.taoensso/timbre "3.0.0"]
[com.taoensso/tower "2.0.1"]
[environ "0.4.0"]
[prismic "0.1.0-SNAPSHOT"]]
:repl-options {:init-ns prismic-starter.repl}
:plugins [[lein-ring "0.8.10"]
[lein-environ "0.4.0"]]
:ring {:handler prismic-starter.handler/app
:init prismic-starter.handler/init
:destroy prismic-starter.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.2.1"]]
:env {:dev true}}}
:min-lein-version "2.0.0")