Tracking XP, levels and ranks in Path of Exile ladders, using ASP.NET core, SignalR core and React.
3.4K
A simple app for tracking the ranks of friends and such in Path of Exile.
The basic idea is:
The application uses SignalR core, and therefore requires ASP.NET core 5.0+.
poetracker database and user.$ dotnet ef database update$ yarn && yarn start$ dotnet runOr the easy way: $ docker-compose up --build
Feel free to send pull requests, feature requests and create issues when you hit bugs :)
This happens when the Path of Exile API return some bad data.
The easiest way to fix your data is to delete all the datapoints for charname/account/league that only has a single row. An example of how this can be achieved via psql is:
delete from "Datapoints"
where "Id" in (
select min("Id") as "Id"
from "Datapoints"
group by "Charname", "AccountId", "LeagueId"
having count(*) < 2
)
Content type
Image
Digest
Size
625.4 MB
Last updated
over 7 years ago
docker pull dhedegaard/poetracker