Skip to content

Environment Setup

Shrey Tailor edited this page Mar 20, 2022 · 5 revisions

Setting up Google OAuth

Add steps here

Frontend

  1. Create a file called .env in the root directory of the project that follows a similar template to the .env.example file. This template is also shown below.
REACT_APP_CLIENT_ID=the client id obtained from Google Developer console.
REACT_APP_BACKEND_ENDPOINT=http://localhost:8080
REACT_APP_BACKEND_SOCKETIO=http://localhost:8081
  1. Replace the value of REACT_APP_CLIENT_ID with the client ID retrieved after setting up OAuth above.

Backend

Add steps here