Originally, Knucklebones is a mini-game from Cult of the Lamb by Massive Monster
ssh knucklebones.egorushque.comin knucklebones, players take turns rolling dice and placing it in either one of three columns on their field.
if your column already has a piece of the same value, each piece adds its value multiplied by the amount of the same dice in the column to your score. so, two 6 pieces would give you 6*2 + 6*2 = 24 points. if your opponent has pieces of the same value in the same column, their pieces are removed from the column.game session ends when one of the players has filled all their columns. player with the highest score wins.
- Install project dependencies with
npm install; - Generate a keypair for the SSH server with
make generate-ssh-keypair; - Start the app in dev mode with
npm run dev.
These commands will start the SSH server and serve the app over it. By default, the SSH server runs on port 2222.
You can change the port by setting the SERVER_PORT environment variable in your .env file.
Run npm run test or make test to run the tests.


