Hey HN, I often work on couple of projects at the same time and am trying to figure out what’s the easiest way to run all of them at once.
For example, let’s say that I want to run frontend and two backend services (each it’s own repo).
My current approach is to run each on a different port, but I actually wonder whether setting up a small Kubernetes cluster with Traefik as proxy wouldn’t serve me better as I could then use Skaffold or something similar to deploy apps independently to the cluster.
Basically looking for true and tested solutions. Thanks.
If you want to run multiple applications, how about ... just running them? It sounds like you already do that, so what is the real problem that you are trying to solve?
If it's annoying to start them by hand one by one, you could use Foreman or Overmind to start them with a single command, and interleave their output in a terminal.