6 ms·
I work remotely 100% of the time (and not always in the same location). The use case for me is to quickly show a feature to coworkers without having to commit/p
by jz 15y ago
I work remotely 100% of the time (and not always in the same location). The use case for me is to quickly show a feature to coworkers without having to commit/push to a remote server. Especially if the feature needs immediate feedback and is not completely baked/finished.
- lukeschlather 15y agoYou can still just use an SSH tunnel on your VPS... no committing/pushing required.
- 182446 15y agoCan you explain how? I am a newbie to web development. I have been making sites locally on my machine and using heroku to deploy online. I am thinking of getting VPS hosting.
- dedward 15y agoIn the simplest case, something like: ssh -R8000:127.0.0.1:80 my.vps.com This will forward all connections to http://my.vps.com:8000/ http://my.vps.com:8000/ to port 80 on your local machine. Adjust ports as necessary. Then you also have the VPS where you can actually host a copy of your app - but that's off-topic.