Skip to content

Commit

Permalink
Move configs around a bit
Browse files Browse the repository at this point in the history
  • Loading branch information
CorruptComputer committed Nov 10, 2024
1 parent 262cb02 commit 914cfcb
Show file tree
Hide file tree
Showing 6 changed files with 48 additions and 34 deletions.
13 changes: 12 additions & 1 deletion Backend/Bones.Api/appsettings.Development.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,17 @@
{
"Serilog": {
"MinimumLevel": "Debug"
"MinimumLevel": "Debug",
"Using": [
"Serilog.Sinks.Console"
],
"WriteTo": [
{
"Name": "Console"
}
],
"Enrich": [
"FromLogContext"
]
},
"Kestrel": {
"Endpoints": {
Expand Down
13 changes: 12 additions & 1 deletion Backend/Bones.Api/appsettings.Production.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,17 @@
{
"Serilog": {
"MinimumLevel": "Information"
"MinimumLevel": "Information",
"Using": [
"Serilog.Sinks.Console"
],
"WriteTo": [
{
"Name": "Console"
}
],
"Enrich": [
"FromLogContext"
]
},
"Kestrel": {
"Endpoints": {
Expand Down
15 changes: 0 additions & 15 deletions Backend/Bones.Api/appsettings.json

This file was deleted.

13 changes: 12 additions & 1 deletion Backend/Bones.BackgroundService/appsettings.Development.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,17 @@
{
"Serilog": {
"MinimumLevel": "Debug"
"MinimumLevel": "Debug",
"Using": [
"Serilog.Sinks.Console"
],
"WriteTo": [
{
"Name": "Console"
}
],
"Enrich": [
"FromLogContext"
]
},
"BackgroundServiceConfiguration": {
"BackgroundServiceUserEmail": "[email protected]",
Expand Down
13 changes: 12 additions & 1 deletion Backend/Bones.BackgroundService/appsettings.Production.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,17 @@
{
"Serilog": {
"MinimumLevel": "Information"
"MinimumLevel": "Information",
"Using": [
"Serilog.Sinks.Console"
],
"WriteTo": [
{
"Name": "Console"
}
],
"Enrich": [
"FromLogContext"
]
},
"BackgroundServiceConfiguration": {
"BackgroundServiceUserEmail": "",
Expand Down
15 changes: 0 additions & 15 deletions Backend/Bones.BackgroundService/appsettings.json

This file was deleted.

0 comments on commit 914cfcb

Please sign in to comment.