Table of Contents:
This project is currently live at ___________
Cluewords: An online multiplayer game with at least 4 players. Players are divided in two teams, blue and red. Each team is further divided into SpyMaster and Operatives. Operatives have to guess correct cards based on clues provided by the SpyMaster. First team to guess all the correct cards wins
Tech Stack
MERN (Mongo, Express, React, Node)
| Other Highlights |
|---|
| material-ui |
| socket.io |
Built by Umer, Chris, and Tony
In order to run this project locally you must have node.js installed.
This project was built on the following node version.
$ node --version
v14.16.0You must also create a .env file in ./server with the following variables:
# randomly generated
SECRET_KEY=" "
# obtained from mongoDB
MONGODB_ATLAS_URI=" "One more .env file needs to be created in ./client
# obtained from cloudinary
REACT_APP_CLOUDINARY_CLOUD_NAME=" "
REACT_APP_CLOUDINARY_UPLOAD_PRESET=" "
If any of the above environment variables are missing the project will loose some functionality or even fail to run.
git clone https://github.com/hatchways/team-iron-man.gitFor client-side/frontend
cd ./clientnpm installnpm startFor server-side/backend
cd ./servernpm installnpm run dev