Reloader
TODO: Add description
Installation
If available in Hex, the package can be installed as:
-
Add
reloaderto your list of dependencies inmix.exs:
```elixir
def deps do
[{:reloader, "~> 0.1.0"}]
end
```-
Ensure
reloaderis started before your application:
```elixir
def application do
[applications: [:reloader]]
end
```reloader
if set the config to true , when you run your application by iex -S mix, and you change you code and mix compile it , the reloader will auto upgrade the change ,so you don't need to restart your application again
# config.exs
config :reloader, run: true