EyeDrops

Build Status Gitter

A configurable watch mix task

Watch file changes in a project and run the corresponding command when a change happens.

mix eye_drops Start watching all configured tasks

Installation

Add eye_drops to your list of dependencies in mix.exs:

def deps do
[{:eye_drops, "~> 1.0.0"}]
end

Basic setup

In your config folder, add the following eye_drops config into one of your config files.

The example below will run the mix test command

config :eye_drops,
tasks: [
%{
id: :unit_tests,
name: "Unit tests",
cmd: "mix test",
paths: ["web/*", "test/*"]
}
]

You can setup multiple tasks and it will run one after the other.

task properties

Optional switches

If using vagrant

This is if you are editing your files outside of the vagrant machine e.g. windows but running commands in vagrant.

The idea is when the task runs it first ssh into your vagrant machine and then executes the command.

vagrant ssh-config > .ssh-config - save the ssh-config on your host machine

config :eye_drops,
tasks: [
%{
id: :unit_tests,
name: "Unit tests",
cmd: "ssh -F .ssh-config default mix test",
paths: ["web/*", "test/*"]
}
]

Run mix eye_drops from outside of vagrant in host terminal where the mix.exs file is located