project.clj 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. (defproject hello "0.1.0-SNAPSHOT"
  2. :description "FIXME: write description"
  3. :url "http://example.com/FIXME"
  4. :dependencies [[org.clojure/clojure "1.8.0"]
  5. [selmer "1.0.2"]
  6. [markdown-clj "0.9.86"]
  7. [ring-middleware-format "0.7.0"]
  8. [metosin/ring-http-response "0.6.5"]
  9. [bouncer "1.0.0"]
  10. [org.webjars/bootstrap "4.0.0-alpha.2"]
  11. [org.webjars/font-awesome "4.5.0"]
  12. [org.webjars.bower/tether "1.1.1"]
  13. [org.webjars/jquery "2.2.1"]
  14. [org.clojure/tools.logging "0.3.1"]
  15. [com.taoensso/tower "3.0.2"]
  16. [compojure "1.5.0"]
  17. [ring-webjars "0.1.1"]
  18. [ring/ring-defaults "0.2.0"]
  19. [mount "0.1.10"]
  20. [cprop "0.1.6"]
  21. [org.clojure/tools.cli "0.3.3"]
  22. [luminus-nrepl "0.1.4"]
  23. [org.webjars/webjars-locator-jboss-vfs "0.1.0"]
  24. [luminus-immutant "0.1.9"]
  25. [luminus-migrations "0.1.0"]
  26. [conman "0.4.5"]
  27. [org.postgresql/postgresql "9.4-1206-jdbc4"]
  28. [luminus-log4j "0.1.3"]]
  29. :min-lein-version "2.0.0"
  30. :jvm-opts ["-server" "-Dconf=.lein-env"]
  31. :source-paths ["src/clj"]
  32. :resource-paths ["resources"]
  33. :main hello.core
  34. :migratus {:store :database :db ~(get (System/getenv) "DATABASE_URL")}
  35. :plugins [[lein-cprop "1.0.1"]
  36. [migratus-lein "0.2.6"]]
  37. :profiles
  38. {:uberjar {:omit-source true
  39. :aot :all
  40. :uberjar-name "hello.jar"
  41. :source-paths ["env/prod/clj"]
  42. :resource-paths ["env/prod/resources"]}
  43. :dev [:project/dev :profiles/dev]
  44. :test [:project/test :profiles/test]
  45. :project/dev {:dependencies [[prone "1.0.2"]
  46. [ring/ring-mock "0.3.0"]
  47. [ring/ring-devel "1.4.0"]
  48. [pjstadig/humane-test-output "0.7.1"]
  49. [mvxcvi/puget "1.0.0"]]
  50. :source-paths ["env/dev/clj" "test/clj"]
  51. :resource-paths ["env/dev/resources"]
  52. :repl-options {:init-ns user}
  53. :injections [(require 'pjstadig.humane-test-output)
  54. (pjstadig.humane-test-output/activate!)]}
  55. :project/test {:resource-paths ["env/dev/resources" "env/test/resources"]}
  56. :profiles/dev {}
  57. :profiles/test {}})