An API that can be use to run the Tanssi binary and generate chain specs files
Clone the project and install dependencies
npm install
Since 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-dev
Production:
make build
Finally, 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-dev
Production:
make run