logo

clairvoyance

Unnamed repository; edit this file 'description' to name the repository. git clone https://hacktivis.me/git/clairvoyance.git

mix.exs (616B)


  1. defmodule Clairvoyance.MixProject do
  2. use Mix.Project
  3. def project do
  4. [
  5. app: :clairvoyance,
  6. version: "0.1.0",
  7. elixir: "~> 1.7",
  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: [:os_mon, :logger]
  16. ]
  17. end
  18. # Run "mix help deps" to learn about dependencies.
  19. defp deps do
  20. [
  21. # {:dep_from_hexpm, "~> 0.3.0"},
  22. # {:dep_from_git, git: "https://github.com/elixir-lang/my_dep.git", tag: "0.1.0"},
  23. {:jason, "~> 1.1"}
  24. ]
  25. end
  26. end