Kvazar Crawler Engine that works with Kevacoin node
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

48 lines
726 B

3 years ago
# crawler-full-node
### requirements
```
php-7.4
php-curl
php-mbstring
php-pdo
php-sqlite
3 years ago
php-bcmath
```
3 years ago
3 years ago
#### database
3 years ago
https://github.com/kvazar-network/database
##### MySQL
2 years ago
https://github.com/kvazar-network/crawler-full-node/tree/master
##### SQLite
2 years ago
https://github.com/kvazar-network/crawler-full-node/tree/sqlite
3 years ago
#### kevacoind
https://github.com/kevacoin-project/kevacoin
#### kevacoin.conf
```
rpcuser=user
rpcpassword=password
rpcport=9992
server=1
addressindex=1
txindex=1
rpcallowip=127.0.0.1
whitelist=127.0.0.1
```
#### crontab
```
3 years ago
@reboot /path-to/kevacoind > /dev/null 2>&1
* * * * * /path-to/kevacoind > /dev/null 2>&1
* * * * * /path-to/php /path-to/crawler-full-node/crawler.php > /dev/null 2>&1
3 years ago
```