Lemonade Config

~/.config/lemonade.toml
# ~/.config/lemonade.toml
# This config is for both server and client
host = '127.0.0.1'
allow = '127.0.0.1'
port = 2489
line-ending = 'lf'
#!/bin/bash
# Run lemonade server
nohup lemonade server > /dev/null 2>&1 & disown
#!/bin/bash
# This is server side tunneling
ssh -fN -R 2489:127.0.0.1:2489 user@host
#!/bin/bash
# This is client side tunneling
ssh -fN -L 2489:127.0.0.1:2489 user@host