feat(notify): add FinlyticNotify push notification microservice and test suite

This commit is contained in:
2026-09-01 17:38:01 +02:00
parent 6a0f9af3f8
commit c5d7d359ba
17 changed files with 1677 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
{
"ConnectionStrings": {
"DefaultConnection": "Host=localhost;Port=5432;Database=finlytic;Username=postgres;Password=postgres"
},
"Mqtt": {
"BrokerHost": "localhost",
"BrokerPort": 1883,
"ClientId": "FinlyticNotify"
},
"Ntfy": {
"BaseUrl": "http://localhost:8080",
"TopicPrefix": "finlytic",
"BroadcastChannel": "broadcast",
"DefaultUsername": "admin",
"MinProposalScore": 70.0,
"NotifyOnProposals": true,
"NotifyOnTradeUpdates": true,
"NotifyOnBotTrades": true
},
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.Hosting.Lifetime": "Information"
}
}
}