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