-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathproject.clj
More file actions
61 lines (60 loc) · 2.6 KB
/
project.clj
File metadata and controls
61 lines (60 loc) · 2.6 KB
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
54
55
56
57
58
59
60
(defproject app "2.1.0-SNAPSHOT"
:description "Purple mobile app web service."
:dependencies [[org.clojure/clojure "1.7.0"]
[compojure "1.1.8"]
[ring/ring-json "0.1.2"]
;; json and related utilities
[cheshire "5.4.0"]
[clj-http "1.0.1"]
[crypto-password "0.1.3"]
;; email utility
[com.draines/postal "1.11.3"]
;; Google API
[gapi "1.0.1"]
;; templating
[enlive "1.1.5"]
;; scheduled jobs with exception handling
[silasdavis/at-at "1.2.0"]
;; date/time utilities
[clj-time "0.8.0"]
;; this will be used by clj-aws down below instead of its
;; default aws version
[com.amazonaws/aws-java-sdk "1.9.24"]
[clj-aws "0.0.1-SNAPSHOT"]
[org.clojure/data.priority-map "0.0.6"]
[ring-cors "0.1.7"]
[ring/ring-ssl "0.2.1"]
;; SMS and Phone Calls
[com.twilio.sdk/twilio-java-sdk "4.2.0"]
[analytics-clj "0.3.0"]
[org.clojure/algo.generic "0.1.2"]
[common "2.0.2-SNAPSHOT"]
[opt "1.0.6-SNAPSHOT"]]
:pedantic? false
:plugins [[lein-ring "0.8.13"]
[lein-beanstalk "0.2.7"]
[lein-exec "0.3.5"]]
:ring {:handler app.handler/app
:auto-reload? true
:auto-refresh? true
:reload-paths ["src" "resources" "checkouts"]}
:profiles {:shared [{:dependencies
[[javax.servlet/servlet-api "2.5"]
[ring/ring-mock "0.3.0"]
[org.seleniumhq.selenium/selenium-java "2.47.1"]
[clj-webdriver "0.7.2"]
[ring "1.5.0"]
[pjstadig/humane-test-output "0.6.0"]]
:injections
[(require 'pjstadig.humane-test-output)
(pjstadig.humane-test-output/activate!)]}]
:local [:shared :profiles/local]
:dev [:shared :profiles/dev]
:prod [:shared :profiles/prod]}
:test-selectors {:default (complement :integration)
:integration :integration}
:aws {:beanstalk {:app-name "purple"
:environments [{:name "prod"}
{:name "purple-dev-env"}]
:s3-bucket "leinbeanstalkpurple"
:region "us-west-2"}})