Skip to content

Instantly share code, notes, and snippets.

@developerworks
Created April 9, 2015 14:47
Show Gist options
  • Save developerworks/b2962ddfc7af07c75c8c to your computer and use it in GitHub Desktop.
Save developerworks/b2962ddfc7af07c75c8c to your computer and use it in GitHub Desktop.
defmodule UserSystem.Mixfile do
use Mix.Project
def project do
[app: :user_system,
version: "0.0.1",
elixir: "~> 1.0",
elixirc_paths: ["lib", "web"],
compilers: [:phoenix] ++ Mix.compilers,
deps: deps]
end
# Configuration for the OTP application
#
# Type `mix help compile.app` for more information
def application do
[mod: {UserSystem, []},
applications: [:phoenix, :cowboy, :logger, :mariaex, :ecto, :maru]]
end
# Specifies your project dependencies
#
# Type `mix help deps` for examples and options
defp deps do
[
{:phoenix, "~> 0.10.0"},
{:cowboy, "~> 1.0"},
{:mariaex, github: "xerions/mariaex", override: true},
#{:postgrex, "~> 0.8.0"},
{:ecto, "~> 0.9.0"},
#{:placid, github: "slogsdon/placid"}
{:timex, "~> 0.13.3"},
{:thrift_ex, github: "dantswain/thrift_ex"},
{:maru, "~> 0.2.8"}
]
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment