The goal of this project is to create the card playing game durak as a web app.
This project is very new and currently under heavy development so do not expect working builds.
The web part is located in a own repository under KeKsBoTer/durak-webapp.
Clone the repository with:
go get github.com/KeKsBoTer/durak
Run with Makefile:
make deps # install dependencies
make # build and run
Without Makefile:
go get ./...` # install dependencies
go build -o durak github.com/KeKsBoTer/durak/cmd # build (for windows: -o durak.exe)
./durak # run (for windows: durak.exe)