您好!我正在尝试将您的插件安装到容器(bitnami/discourse)中。但是,我无法使用以下命令预编译资源:RAILS_ENV=production bundle exec rake assets:precompile。该命令每次都会因错误而失败:NameError: uninitialized constant BaseBookmarkable。
希望您能帮助我理解发生了什么!提前感谢。
1 个赞
您好,我今天早上遇到了完全相同的问题。
值得注意的是,我以完全相同的方式安装了另外 3 个插件,但没有任何错误。
@Lexias
我找到了一个解决方法:
RAILS_ENV=production bundle exec rake plugin:install repo=https://github.com/discourse/discourse-data-explorer
cd "$DISCOURSE_BASE_DIR/plugins/discourse-data-explorer"
git reset --hard 92bdea38b2af1b4e04f4c52d1bd34550d553f66b
cd "$DISCOURSE_BASE_DIR"
RAILS_ENV=production bundle exec rake assets:precompile
我将 git 重置到了 BaseBookmarkable 提交之前的一个工作版本,现在运行得非常完美。
1 个赞