Current section
Files
Jump to
Current section
Files
mix.exs
defmodule Phasedb.Mixfile do
use Mix.Project
def project do
[app: :phasedb,
version: "0.0.2",
maintainers: [ "James Harton <james@messagerocket.co>" ],
licenses: [ "MIT" ],
links: %{
"GitHub" => "https://github.com/jamesotron/phasedb",
"Docs" => "https://hexdocs.pm/phasedb"
},
description: "A real-time time series database.",
elixir: "~> 1.2",
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
preferred_cli_env: [
{:"white_bread.run", :test},
espec: :test
],
deps: deps]
end
def application do
[
applications: [:logger, :gproc, :calendar],
mod: {PhaseDB, []}
]
end
defp deps do
[
{:calendar, "~> 0.12.4"},
{:heap, "~> 1.0.0"},
{:inflex, "~> 1.5.0"},
{:poison, "~> 2.1.0"},
#{:gproc, "~> 0.5.0"},
{:gproc, github: "uwiger/gproc", tag: "0.6"},
{:espec, "~> 0.8.15", only: :test},
{:faker, "~> 0.6.0", only: :test},
{:white_bread, "~> 2.5.0", only: :test},
{:ex_doc, "~> 0.11.4", only: :dev}
]
end
end