Codeanywhere 找不到 Rails 5.2.1 应用程序的编辑器

Codeanywhere can't find editor for Rails 5.2.1 app

我在访问命令时遇到困难:rails credentials:edit 使用 Codeanywhere 环境。我是 运行 Rails 5.2.1 和 Ruby 2.5.1.

我从终端收到以下响应:

No $EDITOR to open file in. Assign one like this:

EDITOR="mate --wait" bin/rails credentials:edit

For editors that fork and exit immediately, it's important to pass a
wait flag, otherwise the credentials will be saved immediately 
with no chance to edit.

我似乎无法正常工作。

有人可以帮忙吗?

谢谢。

这意味着您还没有设置决定您的编辑器的环境变量。输出中的示例将使 TextMate 成为您的默认编辑器。

不确定 CodeAnywhere 中有哪些编辑器可用,但大多数系统都可以访问 VIM,因此您可以尝试 运行:

EDITOR="vim --wait" bin/rails credentials:edit

您可能不需要传递 --wait 选项。