mycdc/README.md

35 lines
735 B
Markdown
Raw Normal View History

2022-08-15 16:12:17 +00:00
# Asynchronous DB calculations reading the binary log
2022-08-16 11:45:51 +00:00
## Enviroment setup
Because a bug with MariaDB wich it's fix is pending to be merged into main
project branch, a *zongji* fork must be cloned into project root directory.
More info at https://github.com/nevill/zongji/issues/143
2022-08-15 16:12:17 +00:00
```text
git clone https://github.com/juan-ferrer-toribio/zongji.git
cd zongji
git checkout fix-143
```
Apply *zongji.sql* script into DB.
2022-08-16 11:45:51 +00:00
Copy *config.json* to *config.local.json* and place your local configuration
there.
2022-08-15 16:12:17 +00:00
Install dependencies.
```text
2022-08-16 11:45:51 +00:00
npm install
2022-08-15 16:12:17 +00:00
```
2022-08-16 11:45:51 +00:00
## Run application
2022-08-15 16:12:17 +00:00
Launch app.
```text
node index.js
```
## Built With
* [Zongji](https://github.com/nevill/zongji)
* [MySQL2](https://github.com/sidorares/node-mysql2#readme)