Skip to content

Commit

Permalink
fixed example config.json file in README
Browse files Browse the repository at this point in the history
  • Loading branch information
vb2007 committed May 24, 2024
1 parent a286971 commit 4c81dea
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,18 +22,16 @@ Do the following for setting up the application from sratch:
2. Create a `config.json` file in the repo's folder and paste the content above, then fill it out with the correct details:
```json
{
"token": "[your token]",
"clientId": "[your client id]",
"token" : "[your token]",
"clientId" : "[your client id]",

//Connecting to the MariaDB database
"databaseHostAddress" : "[database host ip]:[database host port]",
"databaseName" : "[database name]",
"databaseUser" : "[database username]",
"databasePassword" : "[database user's password]",

//Logging settings
"logToFile": "[True/False]",
"logToDatabase": "[True/False]",
"logToFile" : "[True/False]",
"logToDatabase" : "[True/False]"
}
```
3. Like you would with any other node.js app, install dependencies with with the `npm i` command.
Expand Down

0 comments on commit 4c81dea

Please sign in to comment.