Flynn Poke REPL
poke-repl
To have an instance of poke-repl working with flynn you need to take one extra step and open up a tcp port- in this case 54321.
Create the service in a custom flynn config file. First we make a local copy if we don't have one:
$ flynn release show --json > config.json
Open up the port:
$ flynn route add tcp -s influx-repl -p 54321
Then you need to publish the app:
$ git push flynn master
You need an instance of the poke-repl client. To install the client globally:
$ npm i -g poke-repl
Now, once we have an application deployed, we can connect. The user and password are specified in the repl config file.
$ poke-repl --port 54321 --host 10.51.70.27 --user <USER> --pass <PASS>