diff options
Diffstat (limited to 'project.clj')
-rw-r--r-- | project.clj | 19 |
1 files changed, 9 insertions, 10 deletions
diff --git a/project.clj b/project.clj index 961c733..cddf5f3 100644 --- a/project.clj +++ b/project.clj @@ -1,19 +1,18 @@ -(defproject pronouns "1.0.0-SNAPSHOT" - :description "FIXME: write description" - :url "http://pronouns.herokuapp.com" - :license {:name "FIXME: choose" - :url "http://example.com/FIXME"} +(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"] - [ring-basic-authentication "1.0.5"] [environ "0.5.0"] - [hiccup "1.0.5"] - [com.cemerick/drawbridge "0.0.6"]] + [hiccup "1.0.5"]] :min-lein-version "2.0.0" - :plugins [[environ/environ.lein "0.2.1"]] + :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}}}) + :profiles {:production {:env {:production true}}} + :ring {:handler pronouns.web/app}) |