summaryrefslogtreecommitdiff
path: root/ofborg/config.production.json
blob: 3dc45cd943f338489059121d5f4e856fdcb7144a (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
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
97
98
99
100
101
{
    "runner": {
        "identity": "mail-tickborg-1",
        "repos": ["project-tick/Project-Tick"],
        "trusted_users": ["AhmetSamet06"]
    },
    "checkout": {
        "root": "/var/lib/tickborg/checkout"
    },
    "build": {
        "system": "x86_64-linux",
        "build_timeout_seconds": 1800
    },
    "github_app": {
        "app_id": 0,
        "private_key": "/etc/tickborg/github-private-key.pem",
        "oauth_client_id": "GITHUB_APP_CLIENT_ID",
        "oauth_client_secret_file": "/etc/tickborg/github-oauth-secret"
    },
    "github_webhook_receiver": {
        "listen": "0.0.0.0:9899",
        "webhook_secret_file": "/etc/tickborg/webhook-secret",
        "rabbitmq": {
            "ssl": false,
            "host": "localhost",
            "virtualhost": "/",
            "username": "tickborg",
            "password_file": "/etc/tickborg/rabbitmq-password"
        }
    },
    "evaluation_filter": {
        "rabbitmq": {
            "ssl": false,
            "host": "localhost",
            "virtualhost": "/",
            "username": "tickborg",
            "password_file": "/etc/tickborg/rabbitmq-password"
        }
    },
    "github_comment_filter": {
        "rabbitmq": {
            "ssl": false,
            "host": "localhost",
            "virtualhost": "/",
            "username": "tickborg",
            "password_file": "/etc/tickborg/rabbitmq-password"
        }
    },
    "github_comment_poster": {
        "rabbitmq": {
            "ssl": false,
            "host": "localhost",
            "virtualhost": "/",
            "username": "tickborg",
            "password_file": "/etc/tickborg/rabbitmq-password"
        }
    },
    "builder": {
        "rabbitmq": {
            "ssl": false,
            "host": "localhost",
            "virtualhost": "/",
            "username": "tickborg",
            "password_file": "/etc/tickborg/rabbitmq-password"
        }
    },
    "push_filter": {
        "rabbitmq": {
            "ssl": false,
            "host": "localhost",
            "virtualhost": "/",
            "username": "tickborg",
            "password_file": "/etc/tickborg/rabbitmq-password"
        },
        "default_attrs": []
    },
    "log_message_collector": {
        "rabbitmq": {
            "ssl": false,
            "host": "localhost",
            "virtualhost": "/",
            "username": "tickborg",
            "password_file": "/etc/tickborg/rabbitmq-password"
        },
        "logs_path": "/var/log/tickborg"
    },
    "log_api_config": {
        "listen": "127.0.0.1:9898",
        "logs_path": "/var/log/tickborg",
        "serve_root": "https://logs.tickborg.projecttick.net/logfile"
    },
    "stats": {
        "rabbitmq": {
            "ssl": false,
            "host": "localhost",
            "virtualhost": "/",
            "username": "tickborg",
            "password_file": "/etc/tickborg/rabbitmq-password"
        }
    }
}