Home

Awesome

ansible-elixir-stack

Tool to deploy Elixir & Phoenix apps to servers.

Docs: [Configuration], [Hot code-reloading], [prod.secret.exs file], [Logs]

Features

To deploy to Heroku, use the Heroku Elixir buildpack instead.

Install

$ pip install ansible
$ ansible-galaxy install HashNuke.elixir-stack

# assuming your SSH key is called `id_rsa`
# run this everytime you start your computer
$ ssh-add ~/.ssh/id_rsa

If the above commands fail, try with sudo. For Mac OS X, Ansible is also available on homebrew.

Setup your project

1.) Add exrm as your project's dependency in mix.exs

defp deps do
  [{:exrm, "~> 0.18.1"}]
end

2.) In your project dir, run following command:

$ curl -L http://git.io/ansible-elixir-stack.sh | bash

FOLLOW INSTRUCTIONS OF ABOVE COMMAND

Checkout the documentation on configuration options

Deploy your project

Assuming you have root SSH access to the server

To deploy the first time
$ ansible-playbook playbooks/setup.yml
To update your project
$ ansible-playbook playbooks/deploy.yml

By default the application is restarted on each deploy. Read how to enable hot code-reloading.

FAQ

Misc