sloane.sh/lib/mix/tasks/site.serve.ex
2024-02-17 08:09:30 -05:00

35 lines
720 B
Elixir

defmodule Mix.Tasks.Site.Serve do
@moduledoc "Serve the built site. Only for use in development"
@shortdoc "serve the built site"
use Mix.Task
require Logger
@impl Mix.Task
def run(_args) do
Logger.info("Starting development server...")
{:ok, _} =
Application.ensure_all_started([
:telemetry,
:plug,
:thousand_island,
:bandit
])
{:ok, pid} = SloaneSH.serve()
unless iex_running?() do
ref = Process.monitor(pid)
receive do
{:DOWN, ^ref, _, _, _} ->
Logger.info("Development server terminated")
:ok
end
end
end
defp iex_running? do
Code.ensure_loaded?(IEx) and IEx.started?()
end
end