An online multiplayer pictionary game driven by WebSockets.
npm install
cd react-client
npm install
- Backend (runs on port 3001 by default):
npm run dev
- Frontend:
cd react-client
npm start
- Runs on port 3001 by default.
cd react-client
npm run build
cd ..
npm start
REDIS_HOST = YOUR_REDIS_HOST_URL
REDIS_PORT = YOUR_REDIS_PORT
REDIS_PASSWORD = YOUR_REDIS_PASSWORD
- You can also add a PORT key if you wish to run the application on a different port than default.
- If running in development mode, you do not need to provide REDIS_HOST and REDIS_PORT. REDIS_PASSWORD also not required if no password has been set.