summary refs log tree commit diff
path: root/extra/admin-api/ConfigTest/appsettings.Development.json
blob: 032457733f0729e9b43080d50dd3e27f56f04a01 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{
  "Logging": {
    "LogLevel": {
      "Default": "Information",
      "Microsoft.AspNetCore": "Trace", //Warning
      "Microsoft.AspNetCore.Mvc": "Warning", //Warning
      "Microsoft.AspNetCore.HostFiltering": "Warning", //Warning
      "Microsoft.AspNetCore.Cors": "Warning", //Warning
      //      "Microsoft.EntityFrameworkCore": "Warning"
      "Microsoft.EntityFrameworkCore.Database.Command": "Debug"
    }
  },
  "ConnectionStrings": {
    "Spacebar": "Host=127.0.0.1; Username=postgres; Database=spacebar; Port=5432; Include Error Detail=true; Maximum Pool Size=1000; Command Timeout=6000; Timeout=600;",
  },
  "RabbitMQ": {
    "Host": "127.0.0.1",
    "Port": 5673,
    "Username": "guest",
    "Password": "guest"
  },
  "SpacebarAdminApi": {
    "Enforce2FA": true,
    "OverrideUid": null,
    "DisableAuthentication": false
  }
}