简体   繁体   中英

Rails / Cappuccino App Not Loading on Heroku

I have a rails app with a cappuccino front end that I am trying to deploy onto Heroku.

The app works fine when I run it on localhost using WEBrick, but when I push onto Heroku I get the error message ActionController::RoutingError (No route matches "/"):

Here is the contents of the routing file:

CappcourceWs::Application.routes.draw do
  resources :transaction_logs

  resources :users
end

Is there a route that I have failed to define?

Doesn't look like a heroku-specific problem. My first guess is you need to add a root route, such as:

CappcourceWs::Application.routes.draw do
  root :to => 'users#login'

  resources :transaction_logs
  resources :users
end

...or whatever the appropriate action/view is in your case.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM