I am trying to use Hydra-CLI on a node.js local system, while connecting to a redis db that is hosted on redislabs. Howver, the redislabs db requires a password and I can't seem to find any configuration for password in the Hydra-CLI configuration options.
I can connect to the database using hydra-express with a password set in the config.json hydra object.
{
"environment": "development",
"hydra": {
"serviceName": "hydraApp",
"serviceIP": "",
"servicePort": 3000,
"serviceType": "sending back simple response to server",
"serviceDescription": "Simple messaging between server and service",
"redis": {
"url": <redislabs db url>,
"port": <port>,
"db": 0,
"password": <password>
}
}
}
But i would like to experiment with the hydra-cli to learn more about how it works and i get stuck on this.
Thanks!