リリース前はHerokuであっても公開したくないお客様も多いのでいつも書くやつ。

class ApplicationController < ActionController::Base
  http_basic_authenticate_with name: "user", password: ENV["BASIC_AUTH_PASSWORD"] if Rails.env.production? || Rails.env.staging?
end

Comments


Option