DamageAssessment_Backend/DamageAssesmentApi/DamageAssesment.Api.Attachments/appsettings.json

21 lines
648 B
JSON
Raw Normal View History

2023-08-15 22:52:30 -05:00
{
"JwtSettings": {
"securitykey": "bWlhbWkgZGFkZSBzY2hvb2xzIHNlY3JldCBrZXk="
},
2023-08-15 22:52:30 -05:00
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
},
"AllowedHosts": "*",
"Fileupload": {
"folderpath": "DMS_Attachments/Active",
"Deletepath": "DMS_Attachments/Deleted"
2023-08-18 16:14:41 -05:00
},
"ConnectionStrings": {
2023-10-10 15:28:30 -05:00
//"AttachmentConnection": "Server=DESKTOP-OF5DPLQ\\SQLEXPRESS;Database=da_survey_dev;Trusted_Connection=True;TrustServerCertificate=True;"
"AttachmentConnection": "Server=localhost,1433;Database=da_survey_dev;User Id=sa;Password=Password123;TrustServerCertificate=True;"
2023-08-15 22:52:30 -05:00
}
}