-
create dev.js file inside your config folder and add following properties.
module.exports = {googleClientID: "your google client id",googleClientSecret: "your client secret",mongoURI: "your Mongo_Url",cookieKey: "Your key",};
- open windows powershell and write below command.
wsl - Install followings
sudo apt-get updatesudo apt-get install redis - Start the Redis Server
sudo service redis-server start - You can test that your Redis server is running by connecting with the Redis CLI:
redis-cli127.0.0.1:6379> pingPONG
- Run
npm installin the root of the project to install server dependencies - Change into the client directory and run
npm install --legacy-peer-deps - Change back into the root of the project and run
npm run devto start the server - Access the application at
localhost:3000in your browser
.png)


