Implementation of Boggle in React!
This game of Boggle is for fun and not for profit :)
It is set up with a backend so that users can login with Google OAuth to save their scores over time. I may someday add some other data related features.
For now, in the UI, you only see your historical high score (if you're logged in). You only have access to your own past scores.
To logout, you'll need to clear your cookies at the hosted backend. In production, this site uses a HTTP-only secure cookie with a serverside client secret, so your OAuth information is safe.
This app was bootstrapped using Create React App
To run the server, cd app
and:
Install dependencies:
yarn install
Start the server
npm start
To kick off a deployment:
npm deploy
To set up with a local backend, edit apollo.js to point to your backend, i.e. http://localhost:4000