There is my variation of checkers that I invented long time ago.
I just remember that as a kid, I used to play chess and draughts with a friend of mine sometimes.
And one day I decided to change the rules of draughts to make it more fun.
I was reminded of those days and I wanted to implement the game since I can remember.
The exact rules and demo can be found here.
build.bat
— build for production.
cd server
dotnet build
— install dependencies and build;dotnet run --project src\Api\MyCheckers.Api.fsproj
— starts dev server.
cd client
npm ci
— install dependencies;npm run dev
— start dev server.