Modify `appsettings.Development.json`

Add ``appsettings.json``
This commit is contained in:
Alan Moon 2025-06-15 14:58:12 -07:00
parent 198a8635ab
commit 75dbfa9c03
2 changed files with 30 additions and 0 deletions

View File

@ -1,4 +1,16 @@
{ {
"Jwt": {
"Key": "bgpLLhY2L2UeZN3sj6WwSzScFmY3JgWfs33ZEJNcaPzC2TEnfZz",
"Issuer": "http://localhost",
"Audience": "http://localhost",
"DefaultUserRole": "User"
},
"ConnectionStrings": {
"DevelopmentConnection": "Data Source=qtcdev.db"
},
"GeneralConfig": {
"CDNPath": "./user-content"
},
"Logging": { "Logging": {
"LogLevel": { "LogLevel": {
"Default": "Debug", "Default": "Debug",

View File

@ -0,0 +1,18 @@
{
"Jwt": {
"Key": "bgpLLhY2L2UeZN3sj6WwSzScFmY3JgWfs33ZEJNcaPzC2TEnfZz",
"Issuer": "http://localhost",
"Audience": "http://localhost",
"DefaultUserRole": "User"
},
"GeneralConfig": {
"CDNPath": "./user-content"
},
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
},
"AllowedHosts": "*"
}