Clone the apis-core repository
git clone https://github.com/cometwebdev/apis-core.gitCreate the .env file at project root and run the build scripts. See .env-example for the list of environment variables and defaults.
cd apis-core/
cp .env-example .envTL;DR: Using task runner:
npm run build
npm run startBy service or chain:
# ex: run just the gateway
docker-compose up gateway
# ex: run all ethereum services
docker-compose up ethereum*
# ex: run all bitcoin services
docker-compose up bitcoin*
# ex: run everything
docker-compose up
npm run build-production
npm run start-production