Skip to content

Latest commit

 

History

History
30 lines (26 loc) · 901 Bytes

README.md

File metadata and controls

30 lines (26 loc) · 901 Bytes

chess-monorepo

The purpose of this monorepo is to develop a family of web-based chess apps that share components.

To use, after cloning, from root directory run

yarn install
lerna bootstrap

Then, to run the Game app,

cd packages/chess-game
yarn start

To run the Position-setup app,

cd packages/chess-set-position
yarn start

To run the simple Board-clicker app (just logs to the console the square that you clicked),

cd packages/chess-board-clicker
yarn start