Advertisement
Guest User

Untitled

a guest
Oct 23rd, 2014
171
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. defmodule Testapp.Mixfile do
  2. use Mix.Project
  3.  
  4. def project do
  5. [app: :testapp,
  6. version: "0.0.1",
  7. elixir: "~> 1.0",
  8. elixirc_paths: ["lib", "web"],
  9. compilers: [:phoenix] ++ Mix.compilers,
  10. deps: deps]
  11. end
  12.  
  13. # Configuration for the OTP application
  14. #
  15. # Type `mix help compile.app` for more information
  16. def application do
  17. [mod: {Testapp, []},
  18. applications: [:phoenix, :cowboy, :logger]]
  19. end
  20.  
  21. # Specifies your project dependencies
  22. #
  23. # Type `mix help deps` for examples and options
  24. defp deps do
  25. [{:phoenix, "0.5.0"},
  26. {:cowboy, "~> 1.0", }]
  27. end
  28. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement