Current section
Files
Jump to
Current section
Files
mix.exs
defmodule Gatling.Mixfile do
use Mix.Project
def project do
[
app: :gatling,
version: "0.0.1",
elixir: "~> 1.2",
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
name: "Gatling",
source_url: "https://github.com/hashrocket/gatling",
package: package,
description: description,
deps: deps,
]
end
defp description do
"""
Enjoy heroku like deployments with Exrm and your own server.
"""
end
defp package do
[
name: :gatling,
licenses: ["Apache 2.0"],
maintainers: ["Micah Cooper", "Hashrocket"],
links: %{
"GitHub" => "https://github.com/hashrocket/gatling",
}
]
end
def application do
[applications: [:logger]]
end
defp deps do
[]
end
end