Skip to content

TTC-AAlst/PongRank

Repository files navigation

PongRank

Deploy

cp .example.env .env
cp src/PongRank.WebApi/appsettings.json src/PongRank.WebApi/appsettings.Release.json

docker-compose up -d --build

Database

Use docker compose up -d --build.

EF Migrations

Migrations will run at startup of application.

cd src/PongRank.DataAccess
dotnet ef database update

# Install
dotnet tool install --global dotnet-ef
dotnet tool update --global dotnet-ef

# Create
dotnet ef migrations add InitialCreate

# Delete
dotnet ef migrations remove
dotnet ef database drop -f

Sync Progress

SELECT "Competition", "Year", "CategoryName", "SyncCompleted", COUNT(0)
FROM "Clubs"
GROUP BY "Competition", "Year", "CategoryName", "SyncCompleted"
ORDER BY "Competition", "Year", "CategoryName", "SyncCompleted"

About

Calculate next year player rankings. Now with more AI.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published