diff --git a/Back/skydiveLogs-api/appsettings.Development.json b/Back/skydiveLogs-api/appsettings.Development.json index e203e94..2d0df14 100644 --- a/Back/skydiveLogs-api/appsettings.Development.json +++ b/Back/skydiveLogs-api/appsettings.Development.json @@ -1,9 +1,13 @@ { "Logging": { "LogLevel": { - "Default": "Debug", - "System": "Information", - "Microsoft": "Information" + "Default": "Warning", + "System": "Warning", + "Microsoft": "Warning" } + }, + "AllowedHosts": "http://localhost:4200", + "ConnectionStrings": { + "DefaultConnection": "Filename=./Data/JumpsDb.db" } -} +} \ No newline at end of file diff --git a/Back/skydiveLogs-api/appsettings.Release.json b/Back/skydiveLogs-api/appsettings.Release.json new file mode 100644 index 0000000..8508290 --- /dev/null +++ b/Back/skydiveLogs-api/appsettings.Release.json @@ -0,0 +1,13 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Debug", + "System": "Information", + "Microsoft": "Information" + } + }, + "AllowedHosts": "*", + "ConnectionStrings": { + "DefaultConnection": "Filename=./Data/JumpsDb.db" + } +} \ No newline at end of file diff --git a/Back/skydiveLogs-api/appsettings.json b/Back/skydiveLogs-api/appsettings.json index 42ae427..4aa247b 100644 --- a/Back/skydiveLogs-api/appsettings.json +++ b/Back/skydiveLogs-api/appsettings.json @@ -4,7 +4,7 @@ "Default": "Warning" } }, - "AllowedHosts": "*", + "AllowedHosts": "http://localhost:4200", "ConnectionStrings": { "DefaultConnection": "Filename=./Data/JumpsDb.db" }