mirror of
https://github.com/benbusby/farside.git
synced 2025-03-15 03:36:33 -04:00

Once a list of available URLs has been determined for a particular service, the list is written as "service -> [list of instances]" to a local redis connection. These can then be used in the greater routing logic to pick a random instance from the list, or use a fallback instance if none are determined to be available.
33 lines
641 B
Elixir
33 lines
641 B
Elixir
defmodule RouterExample.MixProject do
|
|
use Mix.Project
|
|
|
|
def project do
|
|
[
|
|
app: :router_example,
|
|
version: "0.1.0",
|
|
elixir: "~> 1.8",
|
|
start_permanent: Mix.env() == :prod,
|
|
deps: deps()
|
|
]
|
|
end
|
|
|
|
# Run "mix help compile.app" to learn about applications.
|
|
def application do
|
|
[
|
|
extra_applications: [:logger],
|
|
mod: {RouterExample.Application, []}
|
|
]
|
|
end
|
|
|
|
# Run "mix help deps" to learn about dependencies.
|
|
defp deps do
|
|
[
|
|
{:jason, "~> 1.1"},
|
|
{:plug_cowboy, "~> 2.0"},
|
|
{:poison, "~> 5.0"},
|
|
{:httpoison, "~> 1.8"},
|
|
{:redix, "~> 1.1"}
|
|
]
|
|
end
|
|
end
|