Skip to content

Instantly share code, notes, and snippets.

@jfreeze
Created February 7, 2014 18:11
Show Gist options
  • Save jfreeze/8868387 to your computer and use it in GitHub Desktop.
Save jfreeze/8868387 to your computer and use it in GitHub Desktop.
mix.exs for mix docs
defmodule Curl.Mixfile do
use Mix.Project
def project do
[ app: :curl,
version: "0.0.1",
elixir: "~> 0.12.2",
name: "Curl",
source_url: "http:localhost:4000", deps: deps ]
end
# Configuration for the OTP application
def application do
[]
end
defp deps do
[
{ :ex_doc, github: "elixir-lang/ex_doc", ref: "f9c1d88acf8211f41c786750d47e9459b885241f" }
]
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment