about summary refs log tree commit diff
path: root/project.clj
diff options
context:
space:
mode:
authorMorgan <m@morganastra.me>2015-03-03 08:27:23 +0000
committerMorgan <m@morganastra.me>2015-03-03 08:27:23 +0000
commit745314c13d48063c47bb4f8887ca099b976e01b8 (patch)
tree15c714cb46c2f246fdfa4b51741c4737b69d2caa /project.clj
initialize repo
Diffstat (limited to 'project.clj')
-rw-r--r--project.clj18
1 files changed, 18 insertions, 0 deletions
diff --git a/project.clj b/project.clj
new file mode 100644
index 0000000..ea671fd
--- /dev/null
+++ b/project.clj
@@ -0,0 +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"}
+  :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"]
+                 [com.cemerick/drawbridge "0.0.6"]]
+  :min-lein-version "2.0.0"
+  :plugins [[environ/environ.lein "0.2.1"]]
+  :hooks [environ.leiningen.hooks]
+  :uberjar-name "pronouns-standalone.jar"
+  :profiles {:production {:env {:production true}}})