安装cassandra_ecto时出错 - Elixer phoenix框架

时间:2017-04-12 07:39:04

标签: elixir phoenix-framework phoenix-channels

安装cassandra_ecto并启动服务器时,面临一些错误

** (Mix) Could not start application cqerl: could not find application file: cqerl.app

无法继续进行。

1 个答案:

答案 0 :(得分:0)

我还没有亲自使用过cassandra_ecto库,但是这个错误通常意味着你的应用程序缺少一个依赖项。您的cqerl函数中是否列出了deps库?

def deps do
  [
    {:cqerl, github: "matehat/cqerl", tag: "v1.0.4"},
    ...
  ]
end

如果是这样,您是否已将其添加到应该启动的列表应用程序中?

def application do
  [applications: [:cqerl, ...]]
end