-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathappsettings.json
More file actions
47 lines (47 loc) · 1.33 KB
/
appsettings.json
File metadata and controls
47 lines (47 loc) · 1.33 KB
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
{
"ConnectionStrings": {
"Redis": "#{redis.host}:#{redis.port},password=#{redis.password}"
},
"Logging": {
"LogLevel": {
"Default": "Warning",
"Microsoft": "Warning",
"Microsoft.Hosting.Lifetime": "Information",
"devanewbot.Api.v0.Controllers.SignupController": "Information",
"devanewbot.Services": "Information"
}
},
"Rollbar": {
"AccessToken": "#{rollbar.accesstoken}",
"Environment": "#{rollbar.environment}"
},
"AllowedHosts": "*",
"Slack": {
"OauthToken": "#{slack.oauthtoken}",
"UserToken": "#{slack.usertoken}",
"SigningSecret": "#{slack.signingsecret}",
"VerificationToken": "#{slack.verificationtoken}",
"LegacyToken": "#{slack.legacytoken}",
"GeneralChannelId": "C01EGSCSYQY"
},
"SlackSocket": {
"AppToken": "#{slack.apptoken}",
"CommandSuffix": ""
},
"Discord": {
"Token": "#{discord.token}"
},
"BingSearch": {
"Key": "#{bingsearch.key}"
},
"ReCaptcha": {
"SiteKey": "#{recaptcha.sitekey}",
"SecretKey": "#{recaptcha.secretkey}",
"Version": "v3",
"UseRecaptchaNet": false,
"ScoreThreshold": 0.5
},
"QrmBot": {
"Directory": "/app/qrmbot/"
}
}