| You can host Elixir apps on PaaS like Gigalixir[0] or Fly.io[1] (no associated with these). I personally use mix release[2] that assembles a tarball of itself (together with BEAM), then rsync that to Hetzner, restart the remote process and viola. I like simplicity. Re cluster of nodes, the easiest would be to use a library[3] to automate the formation of said cluster. [0] https://www.gigalixir.com/ [1] https://fly.io/docs/elixir/getting-started/ [2] https://elixir-lang.org/getting-started/mix-otp/config-and-r... [3] https://github.com/bitwalker/libcluster |