How to Deploy a Phoenix App to Gigalixir in 20 Minutes (opens in new tab)
From Mitchell Hanberg's Blog: This is a quick screencast to demonstrate how easy it is to deploy an Elixir application to I included a condensed text version of the video for those who prefer it, but you can find the full guide 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 phx.server # commit your code to git ...
Read the original article