如標題所示,我通過簡單的rake routes
得到此錯誤。耙子中止! PG :: ConnectionBad:Cloud9嘗試運行耙路線時出錯
我想在C9中,命令運行的默認環境在生產中,因爲這是我的Gemfile設置。
group :production do
gem 'pg'
end
group :development, :test do
# Use sqlite3 as the database for Active Record
gem 'sqlite3'
end
在我的Linux分區運行完美,所以...我怎麼能在開發測試環境中的運行rake routes
?
嘗試'rake routes RAILS_ENV = development'? –
它也看起來像這可能是虛擬機沒有互聯網連接的結果。有時候這可以通過[重新啓動工作區]來解決(https://docs.c9.io/docs/restarting-your-workspace)。 –