feat(backend): add admin evaluation history, engine, simulation, bot API controllers and global exception middleware

This commit is contained in:
2026-08-24 21:37:32 +02:00
parent 6974b2075b
commit 676496b77d
37 changed files with 88203 additions and 83075 deletions
+22
View File
@@ -0,0 +1,22 @@
{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning",
"Microsoft.EntityFrameworkCore": "Warning"
}
},
"AllowedHosts": "*",
"ConnectionStrings": {
"DefaultConnection": "Host=localhost;Database=finlytic_backend;Username=postgres;Password=postgres"
},
"MQTT": {
"Host": "localhost",
"Port": 1883,
"ClientId": "finlytic_backend"
},
"JWT": {
"Issuer": "FinlyticBackend",
"Audience": "FinlyticClients"
}
}