This is a quick screencast to demonstrate how easy it is to deploy an Elixir application to Gigalixir, a hosting platform built specifically for Elixir. I included a condensed text version of the video for those who prefer it, but you can find the full guide here. Create the Phoenix App # install the generator $ mix archive.install hex phx_new 1.5.6 # generate the project $ mix phx.new foobar # cd into the directory $ cd foobar # create our database $ mix ecto.create # start the server $ mix ...