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

28 lines
583 B
JSON
Raw Normal View History

2020-03-21 00:39:32 -04:00
{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft": "Warning",
"Microsoft.Hosting.Lifetime": "Information"
}
},
2020-03-21 17:11:35 -04:00
"AllowedHosts": "*",
"Instance": {
2020-07-07 21:03:20 -04:00
"Domain": "domain.name",
2020-12-28 02:19:11 -05:00
"AdminEmail": "me@domain.name"
},
"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",
"ConsumerSecret": "twitter.api.key",
"AccessToken": "twitter.api.key",
"AccessTokenSecret": "twitter.api.key"
2020-03-21 17:11:35 -04:00
}
2020-03-21 00:39:32 -04:00
}