StephenGrider / FullstackReactCode

Companion repo to https://www.udemy.com/node-with-react-fullstack-web-development
1.39k stars 1.17k forks source link

LocalTunnel Crash Fix #56

Open dhuang612 opened 5 years ago

dhuang612 commented 5 years ago

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