finnoto-connector
v0.0.3
Published
Connects Database to Finnoto
Maintainers
Readme
Finnoto Connector
This small service allows you to connect queues to Finnoto acting as a proxy between your queues and the UI. It is useful for connecting local development queues as well as production grade queues without the need of sharing passwords or establishing SSH tunnels.
Currently the connector supports MySQL DB, with more to come in later releases.
The connector is designed to be lightweight and using a minimal set of resources from the local server.
Install
Using yarn
yarn global add finnoto-connector
Using npm:
npm install -g finnoto-connectorUsage
Call the tool and get a help on the options:
✗ finnoto --help
Usage: finnoto [options]
Options:
-v, --version output the current version
-t, --token [token] api token (get yours at https://finnoto.com)
-p, --port [port] mysql port [3306] (default: 3306)
-h, --host [host] mysql host [localhost] (default: "localhost")
-d, --database [db] mysql database [0] (default: "0")
--user [user] mysql user
--pass [pass] mysql password
-b, --backend [host] backend domain [api.finnoto.com] (default: "https://api.finnoto.com")
--debug debug mode on
--help display help for command
Example:
✗ finnoto -t 2cfe6a1b-5f0e-466f-99ad-12f51bea79a7 -h 13.233.96.140 --user db_user --pass db_password -d db_nameThe token 2cfe6a1b-5f0e-466f-99ad-12f51bea79a7 is a private token that can be retrieved at your Finnoto account.
After running the command, you should be able to see the connection appear automatically on the dashboard.
