The Colored Coins Block-Explorer
- Bitcoin Core that runs as an RPC server with
-txindex=1 - MongoDB
- The size of the data in the DB depends on
start_block
On a first run, copy config/properties.sample.conf as
config/properties.conf and edit the configuration parameters according to your needs.
Through environment variables it's possible to override configuration parameters.
Set NODE_ENV to production or development to change the environment in which cexplorer
should run.
To install and run the service, execute:
$ npm install
$ NODE_ENV=production npm startA Dockerfile based on Debian Stretch is available. To build and run a docker image of cexplorer, run:
$ docker build -f docker/Dockerfile -t cexplorer .
$ docker run --rm -p 8081:8081 --env NODE_ENV=production \
-v $(pwd)/config/properties.conf:/srv/app/cexplorer/config/properties.conf \
cexplorerThis software is licensed under the Apache License, Version 2.0. See LICENSE for the full license text.