forked from abourget/slick
-
Notifications
You must be signed in to change notification settings - Fork 0
/
plotbot.sample.conf
69 lines (61 loc) · 1.73 KB
/
plotbot.sample.conf
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
{
"Slack": {
"api_token": "xoxb-mamamamama-papapapapapapapa",
"nickname": "username",
"general_channel": "#general",
"team_domain": "your-team-domain-name",
"join_channels": [
"#some", "#other", "private_group"
],
"web_base_url": "http://host.example.com",
"db_path": "./slick.bolt.db"
},
"Server":{
"pid_file": "/var/run/plotbot.pid-or-empty-string"
},
"HealthCheck": {
"urls": [
"https://plot.ly",
"https://stage.plot.ly"
]
},
"Hooker": {
"stripe_secret": "long_key_that_ends_up_in_url",
"github_secret": "secret_shared_by_github"
},
"Deployer": {
"deploy_repo_path": "/home/user/deploy",
"announce_room": "000000_engineering",
"progress_room": "000000_devops",
"default_deployment_branch": "master",
"default_streambed_branch": "production"
},
"Wicked": {
"conf_rooms": [
"000000_confroom1",
"000000_confroom2"
]
},
"PlotlyInternalEndpoint": {
"prod": {
"base_url": "https://plot.ly/somewhere/out/there",
"auth_key": "shared_secret"
}
},
"Webapp": {
"listen": "localhost:8080",
"oauth_base_url": "http://localhost:8080 [must-correspond-with-your Google API Project in the dev console]",
"client_id": "some-client-id-after-setting-an-api-project-in-google",
"client_secret": "secret_keyfromAPIproject",
"restrict_domain": "hosted-domain.example.com",
"session_auth_key": "12312312312312312312312312312312",
"session_encrypt_key": "12345678902345678901234567890123"
},
"github": {
"authtoken": "put your github auth token here"
"github2Hipchat": {
"github-login-name": "hipchat-mention-name"
},
"repos": ["plotly/myrepo", "plotly/otherrepo"]
}
}