cloutier--bird.makeup/src/BirdsiteLive/appsettings.json

44 lines
985 B
JSON
Raw Normal View History

2020-03-21 00:39:32 -04:00
{
"Logging": {
2020-12-30 03:00:23 -05:00
"Type": "none",
"InstrumentationKey": "key",
2021-02-16 23:45:49 -05:00
"ApplicationInsights": {
"LogLevel": {
"Default": "Warning"
}
},
2020-03-21 00:39:32 -04:00
"LogLevel": {
"Default": "Information",
"Microsoft": "Warning",
"Microsoft.Hosting.Lifetime": "Information"
}
},
2020-03-21 17:11:35 -04:00
"AllowedHosts": "*",
"Instance": {
2021-02-03 01:25:47 -05:00
"Name": "BirdsiteLIVE",
2020-07-07 21:03:20 -04:00
"Domain": "domain.name",
"AdminEmail": "me@domain.name",
2021-01-22 18:31:30 -05:00
"ResolveMentionsInProfiles": true,
2021-02-27 22:12:50 -05:00
"PublishReplies": false,
"MaxUsersCapacity": 800,
"UnlistedTwitterAccounts": null
2020-12-28 02:19:11 -05:00
},
"Db": {
"Type": "postgres",
"Host": "127.0.0.1",
"Name": "mydb",
"User": "username",
"Password": "password"
2020-03-21 18:58:23 -04:00
},
"Twitter": {
2020-03-21 23:55:49 -04:00
"ConsumerKey": "twitter.api.key",
2020-12-28 16:42:30 -05:00
"ConsumerSecret": "twitter.api.key"
2021-02-03 01:25:47 -05:00
},
"Moderation": {
"FollowersWhiteListing": null,
"FollowersBlackListing": null,
"TwitterAccountsWhiteListing": null,
"TwitterAccountsBlackListing": null
2020-03-21 17:11:35 -04:00
}
2020-03-21 00:39:32 -04:00
}