This is the simplest game possible. There is button. One click gives you one point. Whoever gets the most points wins.
This is for us to learn how to collaborate in a Software project.
We will use a React front-end and Hasura GraphQL back-end.
Users can login and then start clicking the button.
Download Node.js Installer. Installer can be downloaded from Node.js official site.
node -v
. This should print the version number so you'll see something like this v0
.Download the SimplestGameEver
project files. We can use git
tool for that.
git bash
/ VS code terminal
and go to the directory where you want to download the project.
cd </path_that_project_should_be_saved>
SimplestGameEver
repository to your local computer.
git clone https://github.com/kmchmk/SimplestGameEver
SimplestGameEver\ReactApp
.
cd SimplestGameEver/ReactApp
npm install
command.npm start
command. React app will be run on your default browser automatically.User authentication part is done using auth0.
npm install auth0