Skip to content

Instantly share code, notes, and snippets.

@skovsgaard
Last active January 16, 2016 14:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save skovsgaard/09575ea59f642de521cc to your computer and use it in GitHub Desktop.
Save skovsgaard/09575ea59f642de521cc to your computer and use it in GitHub Desktop.
Hex: 0.10.1
Elixir: 1.2.0
OTP: 18.2.1
Built with: Elixir 1.2.1 and OTP 18.2.2
Registry file available (last updated: 2016-01-16 13:56:15)
Size: 1289kB (compressed 418kb)
Packages #: 1382
Versions #: 6095
defmodule Cichlid.Mixfile do
use Mix.Project
def project do
[app: :cichlid,
version: "0.0.1",
elixir: "~> 1.0",
elixirc_paths: elixirc_paths(Mix.env),
compilers: [:phoenix] ++ Mix.compilers,
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
deps: deps]
end
# Configuration for the OTP application
#
# Type `mix help compile.app` for more information
def application do
[mod: {Cichlid, []},
applications: [:phoenix, :phoenix_html, :cowboy, :logger,
:phoenix_ecto, :postgrex]]
end
# Specifies which paths to compile per environment
defp elixirc_paths(:test), do: ["lib", "web", "test/support"]
defp elixirc_paths(_), do: ["lib", "web"]
# Specifies your project dependencies
#
# Type `mix help deps` for examples and options
defp deps do
[{:phoenix, "~> 0.14"},
{:phoenix_ecto, "~> 0.5"},
{:postgrex, ">= 0.0.0"},
{:phoenix_html, "~> 1.1"},
{:phoenix_live_reload, "~> 0.4", only: :dev},
{:cowboy, "~> 1.0"}]
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment