pronoun.lol/project.clj

19 lines
775 B
Clojure
Raw Permalink Normal View History

2018-11-14 22:03:36 +01:00
(defproject witch-house/pronouns "1.12.0-SNAPSHOT"
2016-09-23 02:21:30 +02:00
:license "GNU Affero General Public License 3.0"
:dependencies [[compojure "1.6.1"]
[environ "1.1.0"]
[hiccup "1.0.5"]
2018-11-15 10:01:43 +01:00
[lambdaisland/ring.middleware.logger "0.5.1"]
[org.clojure/clojure "1.9.0"]
[ring/ring-devel "1.7.1"]
[ring/ring-jetty-adapter "1.7.1"]]
2015-03-03 09:27:23 +01:00
:min-lein-version "2.0.0"
:plugins [[environ/environ.lein "0.2.1"]
[lein-ring "0.9.7"]]
2015-03-03 09:27:23 +01:00
:hooks [environ.leiningen.hooks]
:uberjar-name "pronouns-standalone.jar"
2018-11-14 21:54:50 +01:00
;; FIXME morgan.astra <2018-11-14 Wed>
;; Is this production profile used for anything?
:profiles {:production {:env {:production true}}}
:ring {:handler pronouns.web/app})