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

application.conf « resources « main « src - github.com/twbs/savage.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9af89ec302e9645f1132a195a4d9308c79bae942 (plain)
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
akka {
    loggers = ["akka.event.slf4j.Slf4jLogger"]
    loglevel = INFO
}

spray.can {
    server {
        server-header = "TwbsSavage/0.1 (https://github.com/twbs/savage)"
        request-timeout = 5 s
    }

    client {
        user-agent-header = "TwbsSavage/0.1 (https://github.com/twbs/savage)"
        request-timeout = 20 s
        idle-timeout = 15 s
    }
    host-connector {
        max-connections = 5
        max-retries = 3
        max-redirects = 3
    }
}

savage {
    default-port = 6060
    squelch-invalid-http-logging = true
    set-commit-status = true
    travis-timeout = 2 hours
    github-repo-to-watch = "twbs/bootstrap"
    github-test-repo = "twbs-savage/bootstrap"
    ignore-branches-from-watched-repo = true
    allowed-base-branches = [ "master", "v4-dev", "v3-dev" ]
    trusted-orgs = [ "twbs" ]
    whitelist = [
        "**.md",
        "/bower.json",
        "/composer.json",
        "/fonts/**.{eot,ttf,svg,woff}",
        "/less/**.less",
        "/sass/**.{sass,scss}",
        "/scss/**.{sass,scss}",
        "/js/**.{js,html,css}",
        "/dist/**.{css,js,map,eot,ttf,svg,woff}",
        "/docs/**.{html,css,js,map,png,ico,xml,eot,ttf,svg,woff,swf}"
    ]
    file-watchlist = [
        "/js/**.js"
    ]
    branch-prefix = "savage-"
    username = twbs-savage
    password = XXXXXXXX
    github-web-hook-secret-key = abcdefg
    travis-token = abcdefg
}