Skip to content

Instantly share code, notes, and snippets.

@developerworks
Last active August 29, 2015 14:16
Show Gist options
  • Select an option

  • Save developerworks/d21281b765b4d005d003 to your computer and use it in GitHub Desktop.

Select an option

Save developerworks/d21281b765b4d005d003 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]]
end
# Specifies your project dependencies
#
# Type `mix help deps` for examples and options
defp deps do
[
{:phoenix, "~> 0.9.0"},
{:cowboy, "~> 1.0"},
{:mariaex, "~> 0.1"},
{:ecto, "~> 0.9.0"}
]
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment