2017-03-05 07:13:08 +00:00
|
|
|
(defproject witch-house/pronouns "1.11.0-SNAPSHOT"
|
2016-09-21 01:33:33 +00:00
|
|
|
:description "Pronoun.is is a website for personal pronoun usage examples"
|
2016-08-10 04:30:46 +00:00
|
|
|
:url "http://pronoun.is"
|
2016-09-23 00:21:30 +00:00
|
|
|
:license "GNU Affero General Public License 3.0"
|
2015-03-03 08:27:23 +00:00
|
|
|
:dependencies [[org.clojure/clojure "1.6.0"]
|
|
|
|
[compojure "1.1.8"]
|
|
|
|
[ring/ring-jetty-adapter "1.2.2"]
|
|
|
|
[ring.middleware.logger "0.5.0"]
|
|
|
|
[ring/ring-devel "1.2.2"]
|
|
|
|
[environ "0.5.0"]
|
2016-08-10 04:05:50 +00:00
|
|
|
[hiccup "1.0.5"]]
|
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"
|
2016-09-24 08:28:13 +00:00
|
|
|
:profiles {:production {:env {:production true}}
|
|
|
|
:dev {:dependencies [[midje "1.6.3"]]}}
|
2016-08-10 04:05:50 +00:00
|
|
|
:ring {:handler pronouns.web/app})
|