8 lines
194 B
Elixir
8 lines
194 B
Elixir
defmodule Mix.Tasks.Lain.DevServer do
|
|
use Mix.Task
|
|
|
|
def run(_args) do
|
|
Application.put_env(:lain, :serve_endpoints, true, persistent: true)
|
|
Mix.Tasks.Run.run(["--no-halt"])
|
|
end
|
|
end
|