Remotely/Server/appsettings.json

28 lines
781 B
JSON

{
"ConnectionStrings": {
"PostgreSQL": "Host=localhost;Database=Remotely;Username=postgres;",
"SQLite": "DataSource=Remotely.db",
"SQLServer": "Server=(localdb)\\mssqllocaldb;Database=Remotely-Server-53bc9b9d-9d6a-45d4-8429-2a2761773502;Trusted_Connection=True;MultipleActiveResultSets=true"
},
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore.HttpLogging.HttpLoggingMiddleware": "Information",
"Microsoft.AspNetCore": "Warning"
}
},
"Serilog": {
"MinimumLevel": {
"Default": "Information",
"Override": {
"Microsoft.AspNetCore": "Warning",
"System": "Warning"
}
}
},
"ApplicationOptions": {
"DbProvider": "SQLite",
"DockerGatewayIp": "172.28.0.1"
}
}