2

我只是克隆https://github.com/sharetribe/sharetribe开源项目,我安装了每个 gem,当我尝试运行时:

bundle exec rake ts:index

我收到以下错误:

WARN 您指定了服务器渲染 JS 文件:app/assets/webpack/server-bundle.js,但无法读取。您可以将配置中的 server_bundle_js_file 设置为 "" 以避免此警告您指定了服务器渲染 JS 文件:app/assets/webpack/server-bundle.js,但无法读取。您可以将配置中的 server_bundle_js_file 设置为 "" 以避免此警告生成配置到 /Users/jeanosorio/Repos/sharetribe/config/development.sphinx.conf DEBUG SQL (0.6ms) DELETE FROM delayed_jobsWHERE (handler LIKE ('- -- !ruby/object:ThinkingSphinx::Deltas::%') AND locked_at IS NULL AND locked_by IS NULL AND failed_at IS NULL) sh: indexer: command not found

我不能让它工作。

4

1 回答 1

2

我自己也遇到过这个问题,所以对于任何看到这个错误的人来说,问题很可能是你的节点版本与当前的 Sharetribe 版本不同。

使用 NVM 来管理它。在撰写本文时,Sharetribe 的 Node 版本是 6.9。

$ NVM use 6.9

然后删除并重新安装 node_modules

$ rm -rf client/node_modules && npm install

那应该这样做。

于 2016-11-07T18:38:08.420 回答