LoginSignup
4
1

More than 5 years have passed since last update.

Railsの開発用Welcome画面をproductionでも出す

Posted at

毎回検索してしまう、ので自分のキータに残すことにした。お久しぶりです。

ref: https://stackoverflow.com/questions/17964830/where-is-the-default-welcome-aboard-page-located-in-my-app

Rails.application.routes.draw do
  get '/rails/info/properties' => "rails/info#properties"
  get '/rails/info/routes'     => "rails/info#routes"
  get '/rails/info'            => "rails/info#index"
  root to: "rails/welcome#index"
end
4
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
4
1