diff --git a/qtc-net-server/appsettings.Development.json b/qtc-net-server/appsettings.Development.json index 43b43db..479ad2b 100644 --- a/qtc-net-server/appsettings.Development.json +++ b/qtc-net-server/appsettings.Development.json @@ -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": { "LogLevel": { "Default": "Debug", diff --git a/qtc-net-server/appsettings.json b/qtc-net-server/appsettings.json new file mode 100644 index 0000000..154de67 --- /dev/null +++ b/qtc-net-server/appsettings.json @@ -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": "*" +}