mix.exs 797 B

1234567891011121314151617181920212223242526272829303132333435
  1. defmodule Komutan.MixProject do
  2. use Mix.Project
  3. def project do
  4. [
  5. app: :komutan,
  6. version: "0.1.0",
  7. elixir: "~> 1.6",
  8. start_permanent: Mix.env() == :prod,
  9. deps: deps()
  10. ]
  11. end
  12. # Run "mix help compile.app" to learn about applications.
  13. def application do
  14. [
  15. extra_applications: [:logger],
  16. mod: {KomutanWeb, []},
  17. env: [cowboy_port: 8080]
  18. ]
  19. end
  20. # Run "mix help deps" to learn about dependencies.
  21. defp deps do
  22. [
  23. # {:dep_from_hexpm, "~> 0.3.0"},
  24. # {:dep_from_git, git: "https://github.com/elixir-lang/my_dep.git", tag: "0.1.0"},
  25. {:eml, git: "https://github.com/zambal/eml.git", tag: "master"},
  26. {:ex_doc, "~> 0.13", only: :dev},
  27. {:cowboy, "~> 1.1.2"},
  28. {:plug, "~> 1.6"}
  29. ]
  30. end
  31. end