FullstackReactCode icon indicating copy to clipboard operation
FullstackReactCode copied to clipboard

LocalTunnel Crash Fix

Open dhuang612 opened this issue 6 years ago • 0 comments

function localtunnel { lt -s YOUR_SUBDOMAIN --port 5000 } until localtunnel; do echo "localtunnel server crashed" sleep 2 done This line should be changed from this: lt -s YOUR_SUBDOMAIN --port 5000

to this: lt --subdomain YOUR_SUBDOMAIN --port 5000

according to their github page https://github.com/localtunnel/localtunnel

dhuang612 avatar Jun 19 '19 15:06 dhuang612