chatbot/Chatbot.Api/appsettings.json

19 lines
451 B
JSON
Raw Normal View History

2020-06-06 16:07:32 +03:00
{
2022-09-03 11:12:05 +03:00
"urls": "http://*:5055",
2020-06-06 18:29:20 +03:00
"ConnectionStrings": {
2022-11-21 19:57:05 +02:00
"DatabaseConnection": "Server=##########;Database=##########;User Id=##########;Password=##########;MultipleActiveResultSets=true"
2020-06-06 18:29:20 +03:00
},
2020-06-06 16:07:32 +03:00
"Logging": {
"LogLevel": {
2020-06-07 14:32:46 +03:00
"Default": "Debug",
2020-06-06 16:07:32 +03:00
"Microsoft": "Warning",
"Microsoft.Hosting.Lifetime": "Information"
}
},
2020-06-06 18:29:20 +03:00
"AllowedHosts": "*",
"Credentials": {
2022-11-21 19:57:05 +02:00
"UserName": "**********",
"Password": "**********"
2020-06-06 18:29:20 +03:00
}
2020-06-06 16:07:32 +03:00
}