LingAdmin/Backend/Services/AuthorizationService/LingAdmin.AuthorizationService/appsettings.Development.json

18 lines
527 B
JSON
Raw Normal View History

2026-04-16 18:13:06 +08:00
{
"ConnectionStrings": {
"DefaultConnection": "Server=127.0.0.1,19433;Database=LingAdminDB;User Id=sa;Password=Blank@0925;TrustServerCertificate=True;Encrypt=False;"
},
"JwtSettings": {
"SecretKey": "DevelopmentSecretKeyThatIsAtLeast32CharactersLong!",
"Issuer": "LingAdmin.IdentityService.Dev",
"Audience": "LingAdmin.Client.Dev"
},
"Logging": {
"LogLevel": {
"Default": "Debug",
"Microsoft.AspNetCore": "Information",
"Microsoft.EntityFrameworkCore": "Information"
}
}
}