-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathproject.clj
53 lines (52 loc) · 2.05 KB
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
(defproject hipstr "0.1.0-SNAPSHOT"
:description "FIXME: write description"
:url "http://example.com/FIXME"
:dependencies [[org.clojure/clojure "1.6.0"]
[lib-noir "0.9.4"]
[ring-server "0.3.1"]
[selmer "0.7.2"]
[com.taoensso/timbre "3.3.1"]
[com.taoensso/tower "3.0.2"]
[markdown-clj "0.9.55"
:exclusions [com.keminglabs/cljx]]
[environ "1.0.0"]
[im.chit/cronj "1.4.2"]
[noir-exception "0.2.2"]
[prone "0.6.0"]
[postgresql/postgresql "9.3-1102.jdbc41"]
[migratus "0.7.0"]
[com.novemberain/validateur "2.3.1"]
[yesql "0.5.0-rc1"]
[crypto-password "0.1.3"]]
:repl-options {:init-ns hipstr.repl}
:jvm-opts ["-server"]
:plugins [[lein-ring "0.8.13"]
[lein-environ "1.0.0"]
[lein-ancient "0.5.5"]
[migratus-lein "0.1.0"]
[quickie "0.3.6"]]
:migratus {:store :database
:migration-dir "migrations"
:migration-table-name "_migrations"
:db {:classname "org.postgresql.Driver"
:subprotocol "postgresql"
:subname "//localhost/postgres"
:user "hipstr"
:password "p455w0rd"}}
:ring {:handler hipstr.handler/app
:init hipstr.handler/init
:destroy hipstr.handler/destroy}
:profiles
{:uberjar {:omit-source false
:env {:production true}
:aot :all}
:production {:ring {:open-browser? false
:stacktraces? false
:auto-reload? false}}
:dev {:dependencies [[ring-mock "0.1.5"]
[ring/ring-devel "1.3.1"]
[pjstadig/humane-test-output "0.6.0"]]
:injections [(require 'pjstadig.humane-test-output)
(pjstadig.humane-test-output/activate!)]
:env {:dev true}}}
:min-lein-version "2.0.0")