Skip to content

Latest commit

 

History

History
42 lines (27 loc) · 872 Bytes

README.md

File metadata and controls

42 lines (27 loc) · 872 Bytes

rhyme-game

Multiplayer game based on rhyming, collaborative poetry (versification)

Check it out here rhymes-sometimes.ru

Work in progress...

Tech

  • Server part is a module that runs inside heroiclabs/nakama.
  • Client part is a React app.
  • TypeScript is used for both client and server parts.
  • Tested on NodeJs v14.

Dev setup

To install dependencies and build server code:

cd client && yarn install && cd ../server && yarn install && yarn build

Then you can run all in one docker compose command from the project root:

docker-compose up

Alternatively you can run server part separately from client part.

To run server locally:

cd server && docker-compose up

To run client locally:

cd client && yarn install && yarn start