
This blog is the part of the course on how to create your own Cryptocurrency. This blog contains all the commands to set up explorers.
If you want to understand the complete process of coin building please go to this of How to create Cryptocurrency if you are not already enrolled.
To enroll directly for the course please visit this link Create Own Cryptocurrency
Step by Step Commands to setup explorer
Clone the repository
git clone https://github.com/iquidus/explorer explorer
Install the component
#enter the directory cd explorer #install packages npm install --production
Run the explorer
npm start
Setup Crontab
*/1 * * * * cd ~/explorer && node scripts/sync.js index update > /dev/null 2>&1 */2 * * * * cd ~/explorer && node scripts/sync.js market > /dev/null 2>&1 */5 * * * * cd ~/explorer && node scripts/peers.js > /dev/null 2>&1