2
0
mirror of https://github.com/9ParsonsB/Pulsar.git synced 2025-04-05 17:39:39 -04:00
pulsar/Pulsar/appsettings.development.json
Ben Parsons 579b2b115d Fix issues with Journal handling
Implement basic database
Handle startup events
only send events after the most recent LoadGame
2024-05-25 16:19:07 +10:00

37 lines
806 B
JSON

{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft": "Information",
"Microsoft.Hosting.Lifetime": "Information",
"Microsoft.AspNetCore": "Information"
},
"ApplicationInsights": {
"LogLevel": {
"Default": "Information",
"Microsoft.Data.SqlClient": "Warning",
"Microsoft.EntityFrameworkCore": "Warning",
"Microsoft.AspNetCore": "Warning"
}
}
},
"ReverseProxy": {
"Routes": {
"spaDevRoute": {
"ClusterId": "spaDevCluster",
"Match": {
"Path": "{**catch-all}"
}
}
},
"Clusters": {
"spaDevCluster": {
"Destinations": {
"spaDevServer": {
"Address": "http://localhost:5173"
}
}
}
}
}
}