-
Notifications
You must be signed in to change notification settings - Fork 77
/
example.config.json
50 lines (50 loc) · 1019 Bytes
/
example.config.json
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
{
"http": {
"port": 3000,
"base_url": "https://localhost:3000"
},
"github": {
"graphql_token": "ghp_..."
},
"discord": {
"roles": {
"supporter": "role_id",
"tester": "role_id"
},
"guild_id": "guild_id",
"client_id": "client_id",
"client_secret": "client_secret",
"bot_token": "bot_token"
},
"stripe": {
"goal_cents": 300000,
"secret_key": "secret_key",
"webhook_secret": "webhook_secret",
"notification_emails": []
},
"database": {
"account": {
"uri": "mongodb:https://127.0.0.1:27017",
"database": "database_name",
"connection_string": "mongodb:https://127.0.0.1:27017",
"options": {
"useNewUrlParser": true,
"useUnifiedTopology": true
}
}
},
"email": {
"ses": {
"region": "AWS SES us-east-1",
"key": "AWS SES access key",
"secret": "AWS SES secret key"
},
"from": "Firstname Lastname <[email protected]>"
},
"trello": {
"api_key": "api_key",
"api_token": "api_token",
"board_name": "board_name"
},
"api_base": "https://api.domain.com"
}