- Obtain a dev Google Client ID from here, with allowed redirect URI as
http://localhost:8000 - Create a file
.envwith the following:
REACT_APP_GOOGLE_CLIENT_ID=<google client id>
- Create a file
.serverenvwith the following:
CLIENT_ID=<google client id>
CLIENT_SECRET=<google client secret>
REDIRECT_URI=<google redirect URI>
SPREADSHEET_ID=<hard-coded spreadsheet ID>
- Start the app in dev mode using
npm run dev