Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
defmodule SF.MixProject do
use Mix.Project
def project do
[
app: :sf,
version: "0.1.1",
elixir: "~> 1.9",
start_permanent: Mix.env() == :prod,
deps: deps()
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger],
mod: {SF.Application, []}
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:ex_force, "~> 0.2"},
{:poison, "~> 3.1"},
{:plug_cowboy, "~> 2.0"},
{:cors_plug, "~> 2.0"}
# {:distillery, "~> 2.1"}
# {:dep_from_git, git: "https://github.com/elixir-lang/my_dep.git", tag: "0.1.0"}
]
end
end