Ask HN: Best solution to use for a remote dev environment?
Lately I find myself working from about three different machines, all in different locations. I'm doing mainly RoR work and as such, setting up development environments on each of these three machines and keeping them relatively in sync is quite a pain.
I've been tossing around the idea of running an EC2 instance with Ubuntu on it, getting it set up to use as a development desktop and remoting in with NXWindows. As far as practicality goes, this (in theory) should work rather well, but I'm open to other ideas for doing the same sort of thing.
Has anyone done something similar before? Any tips, recommendations, etc? Thanks!
7 comments
[ 2.9 ms ] story [ 28.3 ms ] threadAlso keep in mind that, if you are in the US and properly structured your startup, you can take a section 179 deduction if you are using it solely for business. And if your business is in NY you can take a 121.3 sales tax exemption
1. Eclipse (with Aptana plugin, remote system explorer plugin) on all computers 2. Github hosting my project repos 3. Two personal linux servers. One at my apartment on my personal internet and the other in the cloud
With those three things, I am able to SSH into whichever Linux server that benefits me most at the time and pull my most recent code from Github. I usually SSH into my cloud-based server if I am not at home, otherwise I SSH into my home server over the LAN. Once I have the most recent repo cloned then I just use Eclipse-over-SSH to connect to that Linux server and edit the code.
This setup works great for me. It's awesome because it's the same editor on all different computers of mine - one being a MBP, the others Windows. I also don't have to install all of my dev related tools, such as databases and stuff, on my main machines. Also, I can leave my sites running, for testing, on my linux servers while the rest of my machines are turned off.
Granted, prior to this I used to just SSH into the servers and use Vim for everything. :P
Thanks for the information, it really helps!
When I know I will continually have internet access, I will ssh to my server and launch vim instances within `screen'