Packages

Generic Elixir toolkit for deploying, observing, and readiness-verifying Coolify apps

Current section

Files

Jump to
coolify_ex lib coolify_ex mix_task_support.ex
Raw

lib/coolify_ex/mix_task_support.ex

defmodule CoolifyEx.MixTaskSupport do
@moduledoc false
def ensure_started! do
case Application.ensure_all_started(:req) do
{:ok, _started} -> :ok
{:error, reason} -> Mix.raise("Could not start CoolifyEx task runtime: #{inspect(reason)}")
end
end
end