TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Show HN: Booste – Run apps in EC2, synced to your own text editor

79 pointsby eduntemanabout 5 years ago

4 comments

llleftyyabout 5 years ago
I'm not trying to be snarky, but I genuinely feel like this could be implemented in less than 50 lines of code, maybe even 0 lines of code. You could just use bare ssh and rsync. Or you could use a remote volume mount. Or you could configure your docker client to connect to a remote docker server. There's a million different ways to do this and none of them are difficult, especially since this is targeted at engineers. I feel like I'm missing the point.
评论 #22964418 未加载
评论 #22964859 未加载
评论 #22964379 未加载
eneumanabout 5 years ago
Hi Erik. I don&#x27;t have the &quot;it works on my machine&quot; problem often, because I mostly work on my own or with very few other people, so I may not be your target audience.<p>I do have the &quot;my laptop&#x27;s hardware is not enough&quot; problem, and my current approach is simply spinning up an EC2 instance with the desired resources and ssh into it and then cloning the git repo I&#x27;m working on.<p>Normally, I set up the instance once (I have to add the ssh keys to my github account), and (if it&#x27;s an expensive instance) start&#x2F;stop it so I don&#x27;t leave it running over night. Not a big pain point as of how I currently work.<p>I could see myself using Booste if it allowed me to, with a single command, spin up and sync bigger instances that would run for a short period of time (eg, for ML model training) and then intelligently stopping&#x2F;terminating it. Also, if you integrate more than one cloud provider, I could switch to the cloud provider best fit for my needs (cost, spin up time, latency, cpu&#x2F;gpu, etc).<p>A couple thoughts on the current implementation (you might be already addressing): - I generally have more than one ongoing project at a time. Having everything in ~&#x2F;Booste sync&#x27;ed with every box doesn&#x27;t work for me (aside from the fact I&#x27;d use a different location) - I sometimes do need to work with big data files, and even if I don&#x27;t want them syncing all the time, I do want a way to retrieve them easily. - I also often work with jupyter notebooks, so I&#x27;d need a way to tunnel (like I do with ssh)<p>Hope this helps and good luck!
评论 #22964800 未加载
sneakabout 5 years ago
What does this have over vim in mosh?<p>For years the ssh type lag made a remote editor too painful. Now we have things like mosh (with local echo) or syncthing or even native vim scp url support. What makes this better? I can’t tell from the website.
评论 #22964426 未加载
评论 #22964422 未加载
eduntemanabout 5 years ago
Hey HN, my name is Erik. This is my second Show HN for Booste – looking forward to your thoughts.<p>Booste is a command-line interface (CLI) that takes code written on your local editor&#x2F;IDE and executes it in EC2. It runs remotely, in a pre-configured environment, but works with your local tools thanks to a background filesync process.<p>I want to fix the “it works on my machine” issue by bypassing personal machines entirely. As if Docker and Heroku had a lovechild.<p>How I came to building Booste:<p>Being a mechanical engineer turned software dev, there were countless times where my laptop (glorified tablet) couldn’t handle the workload needed, so I made Booste v1: a tool to host full desktop apps on AWS and stream it over RDP (remote desktop protocol) to clients. Some may recall the Show HN of Booste v1 six months ago.<p>Booste v1 sucked. Unusable latency, crap unit economics, and an infrequent pain point.<p>Through it all, the most common customer request was for a hosted VS Code. Prospective users wanted the perks of a cloud IDE (namely no-setup environments) but wanted to use their own tools. Diving deeper, it seems that most large companies build out their own (usually buggy) version of remote “devboxes”. The need seemed consistent and clear.<p>After the first Show HN and a failed W20 interview, I pivoted. I gutted the graphical desktop component, zoomed in on developers, and rebuilt as a CLI: Booste v2.<p>Running any shell command proceeded by the world ‘booste’ will trigger the CLI. The CLI tunnels that command through SSH to EC2, executes it there, and streams the stdout back down to your command line. Filesync makes sure EC2 is ready with your code.<p>Where “npm start” would run an app on localhost, “booste npm start” runs the same app in the cloud, visible to your team by URL. You can edit the code locally (VS Code, Sublime, Vim) and the save is synced and hot-swapped on the live URL within a second.<p>How the environment sharing works:<p>- The creator of a “Codebox” (EC2 instance) gets a barebones Ubuntu VM, on which they can set environment variables, install interpreters and packages, or set up databases. (pre-built env templates coming soon).<p>- Team members join the codebox by ID and password with a single “booste join” command.<p>- Codebox members get repos placed next to each other on the directory tree, so code doesn’t clash.<p>- There is “booste clone” feature in the works, where you can clone someone’s config without actually entering and messing with their codebox.<p>Under the hood:<p>-The CLI is built in Python using the Click library<p>-Codebox infrastructure is automated with the AWS SDK.<p>---Currently, they are EC2 instances, for the sake of getting the beta live. I plan to migrate to a more flexible containerized setup in the near future. Containers make much more sense.<p>-I built a Dropbox-like filesync, inspired by the rsync.<p>---It monitors a chosen directory on your local machine and syncs it with the codebox.<p>---When files in that directory are added, modified, or removed, the codebox reflects this within a second. Only differentials are sent.<p>---All communication is encrypted with frequently cycled keys, unlike rsync.<p>---Bulky files (ML data, dependency packages), which would otherwise slow rsync to a crawl are ignored by a customizable .boosteignore file.<p>-Since files sync asynchronously (on edit), the only latency is from ssh. There’s a 0.5 - 1 second delay on booste commands.<p>I’ve moving from closed to open beta. Fueled by covid and the now mandatory remote development teams, I made a free tier for you. Give it a try! Let me know what you like. Let me know what you hate.
评论 #22963824 未加载
评论 #22965294 未加载