Sha256: 275e48d693854997db9841ebb227176b8cea61c21c8087bb651298852d607ae5
Contents?: true
Size: 683 Bytes
Versions: 15
Compression:
Stored size: 683 Bytes
Contents
Jets.application.routes.draw do root "jets/welcome#index" # Reveal health status on /up that returns 200 if the app boots with no exceptions, otherwise 500. # Can be used by load balancers and uptime monitors to verify that the app is live. get "up" => "jets/health#show", as: :jets_health_check # The jets/public#show controller can serve static utf8 content out of the public folder. # Note, as part of the deploy process Jets uploads files in the public folder to s3 # and serves them out of s3 directly. S3 is well suited to serve static assets. # More info here: https://rubyonjets.com/docs/extras/assets-serving/ any "*catchall", to: "jets/public#show" end
Version data entries
15 entries across 15 versions & 1 rubygems