pronoun.lol/project.clj

18 lines
724 B
Clojure
Raw Normal View History

2017-03-05 08:13:08 +01:00
(defproject witch-house/pronouns "1.11.0-SNAPSHOT"
:description "Pronoun.is is a website for personal pronoun usage examples"
:url "http://pronoun.is"
2016-09-23 02:21:30 +02:00
:license "GNU Affero General Public License 3.0"
:dependencies [[org.clojure/clojure "1.9.0"]
[compojure "1.6.1"]
[ring/ring-jetty-adapter "1.7.1"]
[ring/ring-devel "1.7.1"]
[environ "1.1.0"]
[hiccup "1.0.5"]]
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"
:profiles {:production {:env {:production true}}}
:ring {:handler pronouns.web/app})