我已经在基于 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 项目目录下创建新应用程序?