about summary refs log tree commit diff
path: root/project.clj
blob: cddf5f3cc507300a350b37db8b003983df9410c6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
(defproject witch-house/pronouns "1.10.0-SNAPSHOT"
  :description "Pronoun.is is a website for personal pronoun usage examples"
  :url "http://pronoun.is"
  :license "GNU Affero General Public License 3.0"
  :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"]
                 [hiccup "1.0.5"]]
  :min-lein-version "2.0.0"
  :plugins [[environ/environ.lein "0.2.1"]
            [lein-ring "0.9.7"]]
  :hooks [environ.leiningen.hooks]
  :uberjar-name "pronouns-standalone.jar"
  :profiles {:production {:env {:production true}}}
  :ring {:handler pronouns.web/app})