-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
96 lines (86 loc) · 3.8 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
(defproject oauth-toy "1.0.0-SNAPSHOT"
:description "Oauth-toy service"
:dependencies [[ch.qos.logback/logback-classic "1.1.3"]
[cheshire "5.4.0"]
[clj-http "1.1.2"]
[clj-time "0.9.0"]
[compojure "1.3.4"]
[environ "1.0.0"]
[com.codahale.metrics/metrics-logback "3.0.2"]
[mixradio/graphite-filter "1.0.0"]
[mixradio/instrumented-ring-jetty-adapter "1.0.4"]
[mixradio/radix "1.0.10"]
[net.logstash.logback/logstash-logback-encoder "4.3"]
[org.clojure/clojure "1.6.0"]
[org.clojure/tools.logging "0.3.1"]
[ring/ring-json "0.3.1"]
[ring-middleware-format "0.5.0"]]
:exclusions [commons-logging
log4j
org.clojure/clojure]
:profiles {:dev {:dependencies [[com.github.rest-driver/rest-client-driver "1.1.42"
:exclusions [org.slf4j/slf4j-nop
javax.servlet/servlet-api
org.eclipse.jetty.orbit/javax.servlet]]
[junit "4.12"]
[midje "1.6.3"]
[rest-cljer "0.1.20"]]
:plugins [[lein-kibit "0.0.8"]
[lein-midje "3.1.3"]
[lein-rpm "0.0.5"]]}}
:plugins [[lein-environ "1.0.0"]
[lein-release "1.0.5"]
[lein-ring "0.8.12"]]
:env {:auto-reload "true"
:environment-name "poke"
:graphite-enabled "false"
:graphite-host ""
:graphite-port "2003"
:graphite-post-interval-seconds "60"
:logging-consolethreshold "info"
:logging-filethreshold "info"
:logging-level "info"
:logging-path "/tmp"
:logging-stashthreshold "off"
:production "false"
:requestlog-enabled "false"
:requestlog-retainhours "24"
:restdriver-port "8081"
:service-name "oauth-toy"
:service-port "8080"
:service-url "http://localhost:%s"
:shutdown-timeout-millis "5000"
:start-timeout-seconds "120"
:threads "254"}
:lein-release {:deploy-via :shell
:shell ["lein" "do" "clean," "uberjar," "pom," "rpm"]}
:ring {:handler oauth-toy.web/app
:main oauth-toy.setup
:port ~(Integer/valueOf (get (System/getenv) "SERVICE_PORT" "8080"))
:init oauth-toy.setup/setup
:browser-uri "/healthcheck"
:nrepl {:start? true}}
:uberjar-name "oauth-toy.jar"
:rpm {:name "oauth-toy"
:summary "RPM for Oauth-toy service"
:copyright "MixRadio 2015"
:preinstall {:scriptFile "scripts/rpm/preinstall.sh"}
:postinstall {:scriptFile "scripts/rpm/postinstall.sh"}
:preremove {:scriptFile "scripts/rpm/preremove.sh"}
:postremove {:scriptFile "scripts/rpm/postremove.sh"}
:requires ["jdk >= 2000:1.7.0_55-fcs"]
:mappings [{:directory "/usr/local/oauth-toy"
:filemode "444"
:username "oauth-toy"
:groupname "oauth-toy"
:sources {:source [{:location "target/oauth-toy.jar"}]}}
{:directory "/usr/local/oauth-toy/bin"
:filemode "744"
:username "oauth-toy"
:groupname "oauth-toy"
:sources {:source [{:location "scripts/bin"}]}}
{:directory "/etc/rc.d/init.d"
:filemode "755"
:sources {:source [{:location "scripts/service/oauth-toy"
:destination "oauth-toy"}]}}]}
:main oauth-toy.setup)