如何使用elixir自定义任务启动持久性牛仔服务器?

问题描述 投票:0回答:1

我试图在elixir中使用cowboy和plug建立一个非常简单的Http服务器。它的工作正常,如果我运行 iex -S mix 并且只要iex被打开。所以我决定创建一个自定义的任务,它启动服务器,但立即结束它。我怎样才能使其持久化?我附上我的 任务、应用和端点 文件连同这个问题。我将会非常感谢任何解决方案。

服务器.exlibmixtasksserver.exe

defmodule Mix.Tasks.MinimalServer.Server do
   use Mix.Task
   def run(_) do
      MinimalServer.Application.start("","")
   end
end

endpoint.exlibMinimalServerendpoint.ex

defmodule MinimalServer.Endpoint do
  use Plug.Router
  use Plug.Debugger
  use Plug.ErrorHandler

  alias MinimalServer.Router
  alias Plug.{HTML, Cowboy}

  require Logger

  plug(Plug.Logger, log: :debug)
  plug(:match)

  plug(Plug.Parsers,
    parsers: [:json],
    pass: ["application/json"],
    json_decoder: Poison
  )

  plug(:dispatch)

  def child_spec(opts) do
    %{
      id: __MODULE__,
      start: {__MODULE__, :start_link, [opts]}
    }
  end

  def start_link(_opts) do
    with {:ok, [port: port] = config} <- config() do
      Logger.info("Starting server at http://localhost:#{port}/")
      Cowboy.http(__MODULE__, [], config)
    end
  end

  forward("/bot", to: Router)

  match _ do
    conn
    |> put_resp_header("location", redirect_url())
    |> put_resp_content_type("text/html")
    |> send_resp(302, redirect_body())
  end

  defp redirect_body do
    ~S(<html><body>You are being <a href=")
    |> Kernel.<>(HTML.html_escape(redirect_url()))
    |> Kernel.<>(~S(">redirected</a>.</body></html>))
  end

  defp config, do: Application.fetch_env(:minimal_server, __MODULE__)
  defp redirect_url, do: Application.get_env(:minimal_server, :redirect_url)

  def handle_errors(%{status: status} = conn, %{kind: _kind, reason: _reason, stack: _stack}),
    do: send_resp(conn, status, "Something went wrong")
end

应用程序.exelibMinimalServerapplication.ex

defmodule MinimalServer.Application do
  use Application

  alias MinimalServer.Endpoint

  def start(_type, _args),
    do: Supervisor.start_link(children(), opts())

  defp children do
    [
      Endpoint
    ]
  end

  defp opts do
    [
      strategy: :one_for_one,
      name: MinimalServer.Supervisor
    ]
  end
end

mix minimal_server.server 只显示 14:27:08.515 [info] Starting server at http://localhost:4000/ 然后我看到我的终端光标再次闪烁,我可以输入任何东西。

elixir
1个回答
1
投票

你不需要一个自定义的 mix 这里的任务。您所需要的一切都已经由 mix run 任务。使用

mix run --no-halt
© www.soinside.com 2019 - 2024. All rights reserved.