Packages

A fork of the original remix package which fixes several errors from the old version, which hasn't been updated since 2016. Original Description: Recompiles mix projects on any change to the lib directory.

Current section

Files

Jump to
remixed_remix lib remix application.ex
Raw

lib/remix/application.ex

defmodule RemixedRemix.Application do
use Application
def start(_type, _args) do
children = [
RemixedRemix.Worker
]
Supervisor.start_link(children, strategy: :one_for_one)
end
end