dramaling-app/apps/backend/DramaLing.API/appsettings.Development.json

18 lines
529 B
JSON

{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning",
"Microsoft.EntityFrameworkCore.Database.Command": "Information"
}
},
"ConnectionStrings": {
"DefaultConnection": "Host=localhost;Port=5432;Database=dramaling_dev;Username=postgres;Password=password"
},
"JwtSettings": {
"Key": "development-key-256-bits-long-for-jwt-signing-purpose-only",
"Issuer": "DramaLingAPI-Dev",
"Audience": "DramaLingUsers-Dev",
"DurationInMinutes": 1440
}
}