Made with NodeJS and WPPConnect
You'll need:
- Git
- NodeJS
- Google Sheets Credentials
First, clone this repository and install the required dependences:
# Clone this repository
$ git clone https://github.com/brendajuliane/MemoryGame.git
# Install dependences
$ npm i
After this step, you'll need credentials to use the Google Sheets API. You can get it following the steps:
- Create a Google Cloud Platform project:
- Go to the Google Cloud Console and create a new project.
- Enable the Google Sheets API for your project.
- Create Service Account Credentials:
- Go to the "Credentials" section in your project dashboard.
- Create a new service account and download the credentials file.
After that, place the generated credentials into the 'sheetsCredentials.json' file, located in the 'config' folder. You'll also need to create a spreadsheet and get its ID. Then, change the information in 'sheetsController':
- const spreadsheetId = 'sheetsID';
- const sheetName = 'name';
MIT
