diff options
Diffstat (limited to 'project.clj')
-rw-r--r-- | project.clj | 33 |
1 files changed, 17 insertions, 16 deletions
diff --git a/project.clj b/project.clj index f2b2382..30a5011 100644 --- a/project.clj +++ b/project.clj @@ -1,20 +1,21 @@ -(defproject pronouns "1.0.0-SNAPSHOT" - :description "FIXME: write description" - :url "http://pronouns.herokuapp.com" - :license {:name "FIXME: choose" - :url "http://example.com/FIXME"} - :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"] +(defproject witch-house/pronouns "1.12.0-SNAPSHOT" + :description "Pronoun.is is a website for personal pronoun usage examples" + :url "https://pronoun.is" + :license "GNU Affero General Public License 3.0" + :dependencies [[compojure "1.6.1"] + [environ "1.1.0"] [hiccup "1.0.5"] - [com.cemerick/drawbridge "0.0.6"] - [org.clojure/data.json "0.2.6"]] + [lambdaisland/ring.middleware.logger "0.5.1"] + [org.clojure/clojure "1.9.0"] + [org.clojure/data.json "0.2.6"] + [ring/ring-devel "1.7.1"] + [ring/ring-jetty-adapter "1.7.1"]] :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}}}) + ;; FIXME morgan.astra <2018-11-14 Wed> + ;; Is this production profile used for anything? + :profiles {:production {:env {:production true}}} + :ring {:handler pronouns.web/app}) |