Packages

A search deployment helper library. Aims to easy deployment and monitoring of distributed Manticore & Sphinx in a Linux environment

Current section

Files

Jump to
khafra_search lib khafra application.ex
Raw

lib/khafra/application.ex

defmodule Khafra.Application do
use Supervisor
def start_link() do
Supervisor.start_link(__MODULE__, [], [])
end
def init(_opts) do
_ = Application.ensure_all_started(:timex)
children = [
Khafra.Scheduler
]
Supervisor.init(children, strategy: :one_for_one)
end
end