mirror of
https://github.com/benbusby/farside.git
synced 2025-03-15 11:46:32 -04:00

The name of the project is being refactored from Privacy Revolver to Farside. The reasoning behind this is: 1. A shorter name is easier to remember 2. It can stand for "FOSS alternative redirecting service" (which I know doesn't encapsulate all letters from "farside", but it's close enough). This commit also includes improvements to the update script for determining how far along the script is.
33 lines
622 B
Elixir
33 lines
622 B
Elixir
defmodule Farside.MixProject do
|
|
use Mix.Project
|
|
|
|
def project do
|
|
[
|
|
app: :farside,
|
|
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: {Farside.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
|