Fix leaderboard (#3)

This commit is contained in:
Oda
2024-07-20 20:38:40 +07:00
committed by GitHub
parent 029ba5f40e
commit a43e560d3a
8 changed files with 235 additions and 71 deletions

View File

@@ -110,11 +110,9 @@ builder.Services.AddHostedService<PricesFifteenMinutesWorker>();
builder.Services.AddHostedService<PricesOneHourWorker>();
builder.Services.AddHostedService<PricesFourHoursWorker>();
builder.Services.AddHostedService<PricesOneDayWorker>();
builder.Services.AddHostedService<PositionManagerWorker>();
builder.Services.AddHostedService<SpotlightWorker>();
builder.Services.AddHostedService<TraderWatcher>();
builder.Services.AddHostedService<LeaderboardWorker>();
builder.Services.AddHostedService<NoobiesboardWorker>();
builder.Services.AddHostedService<FundingRatesWatcher>();
// App

View File

@@ -5,8 +5,8 @@
},
"InfluxDb": {
"Url": "http://localhost:8086/",
"Organization": "",
"Token": ""
"Organization": "managing-org",
"Token": "Fw2FPL2OwTzDHzSbR2Sd5xs0EKQYy00Q-hYKYAhr9cC1_q5YySONpxuf_Ck0PTjyUiF13xXmi__bu_pXH-H9zA=="
},
"Serilog": {
"MinimumLevel": {

View File

@@ -18,7 +18,7 @@
}
},
"ElasticConfiguration": {
"Uri": "http://localhost:9200"
"Uri": "http://elasticsearch:9200"
},
"AllowedHosts": "*"
}