Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/rorschach.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Rebert <code@rebertia.com>2014-10-10 05:45:54 +0400
committerChris Rebert <code@rebertia.com>2014-10-10 05:48:16 +0400
commitae4710d99f95fe0d5920a5adc942679bba5b7f27 (patch)
treeafff8461164d7aaeba7e84b96fd892d4e5d79785 /src/main/resources
parenta6fd8eaedbbc5d8ace8bb7a32c093e9be643ba8b (diff)
have Rorschach try to close bad PRs
Diffstat (limited to 'src/main/resources')
-rw-r--r--src/main/resources/application.conf27
1 files changed, 27 insertions, 0 deletions
diff --git a/src/main/resources/application.conf b/src/main/resources/application.conf
new file mode 100644
index 0000000..bcc55f0
--- /dev/null
+++ b/src/main/resources/application.conf
@@ -0,0 +1,27 @@
+akka {
+ loglevel = INFO
+}
+
+spray.can {
+ server {
+ request-timeout = 5 s
+ }
+
+ client {
+ user-agent-header = "Rorschach/0.1 (https://github.com/cvrebert/rorschach)"
+ request-timeout = 20 s
+ idle-timeout = 15 s
+ }
+ host-connector {
+ max-connections = 5
+ max-retries = 3
+ max-redirects = 3
+ }
+}
+
+rorschach {
+ default-port = 9090
+ username = throwaway9475947
+ password = XXXXXXXX
+ web-hook-secret-key = abcdefg
+}