summary refs log tree commit diff
path: root/extra/admin-api/Spacebar.AdminAPI/appsettings.Development.json
diff options
context:
space:
mode:
authorRory& <root@rory.gay>2025-10-14 09:07:55 +0200
committerRory& <root@rory.gay>2025-10-14 09:07:55 +0200
commit58d92080d544e255ee3fd0c0e722a7c6f1c474a7 (patch)
treef3ba88ea3ad8f03b8a0a01fce11bea0965d4b4c6 /extra/admin-api/Spacebar.AdminAPI/appsettings.Development.json
parentSchema fixes, api bug fix (diff)
downloadserver-ts-58d92080d544e255ee3fd0c0e722a7c6f1c474a7.tar.xz
Admin api changes
Diffstat (limited to 'extra/admin-api/Spacebar.AdminAPI/appsettings.Development.json')
-rw-r--r--extra/admin-api/Spacebar.AdminAPI/appsettings.Development.json20
1 files changed, 18 insertions, 2 deletions
diff --git a/extra/admin-api/Spacebar.AdminAPI/appsettings.Development.json b/extra/admin-api/Spacebar.AdminAPI/appsettings.Development.json

index 5a367f27d..032457733 100644 --- a/extra/admin-api/Spacebar.AdminAPI/appsettings.Development.json +++ b/extra/admin-api/Spacebar.AdminAPI/appsettings.Development.json
@@ -2,10 +2,26 @@ "Logging": { "LogLevel": { "Default": "Information", - "Microsoft.AspNetCore": "Warning" + "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" + "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 } }