An API that can be use to run the Tanssi binary and generate chain specs files
Clone the project and install dependencies
npm installSince we need to run the Tanssi binary from a Docker image, we'll run the application in a container.
First, we need to build the image.
Locally:
make build-devProduction:
make buildFinally, we start the container.
Locally (In this case, we mount the file directory as a volume to the container to watch for changes):
make run-devProduction:
make run