about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMorgan Astra <m@morganastra.me>2018-11-14 12:54:50 -0800
committerMorgan Astra <m@morganastra.me>2018-11-14 12:54:50 -0800
commita8e745b5fdbfdf3079dedb9cee541982a8a8d493 (patch)
treefa1398bd6bc37c317cf648570e00c19d803e5e72
parent4eb455368156faea64e37437f9cf16178f6035f0 (diff)
Clean up lein profiles
-rw-r--r--project.clj6
1 files changed, 4 insertions, 2 deletions
diff --git a/project.clj b/project.clj
index bcb1454..5a67479 100644
--- a/project.clj
+++ b/project.clj
@@ -5,7 +5,6 @@
   :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"]]
   :min-lein-version "2.0.0"
@@ -13,5 +12,8 @@
             [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}}
+             :dev {:dependencies [[ring/ring-devel "1.7.1"]]}}
   :ring {:handler pronouns.web/app})