An Online multiplayer chess game. You can play against your friend or against the computer.
Table of Contents
There are 2 modes in this game.
- Play with friend (Need to register first)
- Play against computer
To get a local copy up and running follow these simple example steps.
Fork, then download or clone the repo.
git clone https://github.com/krtk-097/Tactical-Tide.git
For the backend, go to backend folder and install the dependencies once via the terminal.
cd backend
npm install
For the frontend, go to frontend folder and install the dependencies once via the terminal.
cd frontend
npm install
Now create .env file and fill all the details.
MONGO_URI = PUT_YOUR_MONGODB_ATLAS_CONNECTION_STRING_HERE
JWT_SECRET = PUT_JWT_SECRET_HERE
GMAIL_USER = YOUR_GMAIL_ADDRESS
GMAIL_PASS = YOUR_GMAIL_PASS
Now you are ready to run the server and frontend.