0

我已经在基于 Ubuntu 的机器上安装了带有综合包的 gitlab,我也在尝试开发一个 rails 应用程序。由于 gitlab 为自己安装了 ruby​​ 和 rails 框架,我可以使用它来创建新的 rails 应用程序吗?当我gitlab-rails new app_name在我的主目录下运行时,我收到一条错误消息,内容如下:

/usr/bin/gitlab-rails error: could not load /opt/gitlab/etc/gitlab-rails/gitlab-rails-rc
Either you are not allowed to read the file, or it does not exist yet.
You can generate it with: sudo gitlab-ctl reconfigure

当我跑步时,sudo gitlab-rails new app_name我得到:

Can't initialize a new Rails application within the director of another, please change to a non-Rails directory first.
Type 'rails' for help

我试图在新创建的空目录下运行它,但仍然收到相同的消息。我假设gitlab-rails出于某种原因尝试在 gitlab 项目目录下创建新应用程序?

4

1 回答 1

1

据我所知,这不是 gitlab-rails 命令的目的,也不是受支持的功能。只使用 Rails gem 本身来创建一个新的 Rails 应用程序会是一个更好的主意。

于 2016-11-11T05:32:17.870 回答