-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathproject.clj
29 lines (29 loc) · 1.27 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
(defproject facebook-example "0.1.0-SNAPSHOT"
:description "Facebook Messenger Bot in Clojure"
:url "http://example.com/FIXME"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.8.0"]
[org.clojure/data.json "0.2.1"]
[org.clojure/core.async "0.3.443"]
[org.clojure/core.match "0.3.0-alpha4"]
[clojure-future-spec "1.9.0-alpha17"]
[compojure "1.5.1"]
[http-kit "2.2.0"]
[ring/ring-defaults "0.2.1"]
[ring/ring-json "0.4.0"]
[ring/ring-jetty-adapter "1.5.0"]
[environ "1.1.0"]
[fb-messenger "0.4.0"]]
:target-path #=(eval (if (= "vagrant" (System/getenv "USER")) "/tmp/target/%s" "target"))
:min-lein-version "2.0.0"
:plugins [[lein-ring "0.9.7"]
[lein-environ "1.1.0"]]
;:hooks [environ.leiningen.hooks]
:ring {:handler facebook-example.core/app
:open-browser? false
:auto-refresh? false}
:aot [facebook-example.core]
:uberjar-name "facebook-example-standalone.jar")
; :profiles {:default [:base :dev :user]
; #_:production #_{:env {:production false}}})