I have a local Node.js app all ready to go that talks to the Fabric blockchain on my cloud Kubernetes cluster.
As I understand, this works because:
- I have a card
- in terminal
composer import card
- in Node.js
this.bizNetworkConnection.connect(NAME_OF_LOCALLY_IMPORTED_CARD)
So I'm confused how I would host this app on the cloud for the public where anyone can check it out. It sounds like I would have to do the following steps within the cloud machine before it can connect to my business network:
- Download the card
- Install Composer
- Import the card
I feel like there has to be an easier way to do this. What am I missing? If not, it seems like I can only host this app through a VPS solution where I can install whatever I want add files to the local filesystem.