clojsa/project.clj

21 lines
801 B
Clojure
Raw Permalink Normal View History

2020-06-05 20:28:33 +02:00
(defproject clojsa "0.1.0-SNAPSHOT"
:description "FIXME: write description"
:url "http://example.com/FIXME"
:min-lein-version "2.0.0"
2020-06-30 15:57:26 +02:00
:dependencies [[org.clojure/clojure "1.10.1"]
2020-06-05 20:28:33 +02:00
[compojure "1.6.1"]
2020-06-23 17:38:08 +02:00
[ring/ring-jetty-adapter "1.7.1"]
2020-06-22 17:21:05 +02:00
[ring/ring-defaults "0.3.2"]
[http.async.client "1.3.1"]
2020-06-23 17:38:08 +02:00
[hickory "0.7.1"]
[environ "1.1.0"]]
2020-06-05 20:28:33 +02:00
:plugins [[lein-ring "0.12.5"]]
2020-06-24 16:06:31 +02:00
:ring {:handler clojsa.handler/app
:nrepl {:start? true :port 9000}}
:uberjar-name "clojsa-standalone.jar"
2020-06-05 20:28:33 +02:00
:profiles
{:dev {:dependencies [[javax.servlet/servlet-api "2.5"]
[ring/ring-mock "0.3.2"]
[postmortem "0.4.0"]]}
:production {:env {:production true}}})