Sudoku Game with multiple functionalities like playing in Multiplayer Mode and Visualization of Sudoku Solving Process using Backtracking Algorithm at different speeds
$ git clone https://github.com/Yash2rule/Sudoku.git
$ cd project
Create a .env file in then root and add the following
NODE_ENV = development
PORT = 5000
npm install
cd frontend
npm install
# Run backend (:5000) (stay in the root folder to run this command)
npm run start
# Run frontend (:3000)
cd frontend
npm run start
Note: Run backend first and then frontend
# Create frontend prod build
cd frontend
npm run build
There is a Heroku postbuild script, so if you push to Heroku, no need to build manually for deployment to Heroku
The MIT License