diff options
author | Morgan Astra <m@morganastra.me> | 2016-08-09 21:05:50 -0700 |
---|---|---|
committer | Morgan Astra <m@morganastra.me> | 2016-08-09 21:05:50 -0700 |
commit | e3c5f5d366af76cb39f2716455cb220abdc0bfae (patch) | |
tree | f384b07b11a1f70a7d9f6621ab4a5cb3379e4296 /project.clj | |
parent | cd832bcd7049e9d4ce80ef2907e084edc5813319 (diff) |
get rid of useless config var and use dynamic var for *pronouns-table*, clean up project.clj
Diffstat (limited to 'project.clj')
-rw-r--r-- | project.clj | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/project.clj b/project.clj index 961c733..88084dc 100644 --- a/project.clj +++ b/project.clj @@ -1,5 +1,5 @@ -(defproject pronouns "1.0.0-SNAPSHOT" - :description "FIXME: write description" +(defproject witch-house/pronouns "1.9.0-SNAPSHOT" + :description "Pronoun.is is a web app for showing usage examples of personal pronouns in English." :url "http://pronouns.herokuapp.com" :license {:name "FIXME: choose" :url "http://example.com/FIXME"} @@ -8,12 +8,12 @@ [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}) |