Provide a helpful warning if there's an application.yml file detected
This commit is contained in:
parent
7d57fb8c28
commit
fd47078b14
1 changed files with 13 additions and 0 deletions
|
@ -1,5 +1,18 @@
|
|||
require_relative "boot"
|
||||
|
||||
# Guard against deployments with old-style application.yml configurations
|
||||
# Otherwise, admins might not be aware that they are now silently ignored
|
||||
# and major problems could occur
|
||||
# rubocop:disable Rails/Output, Rails/Exit
|
||||
if File.exist?(File.expand_path("application.yml", __dir__))
|
||||
puts "The config/application.yml file is no longer supported"
|
||||
puts "Default settings are now found in config/settings.yml and you can override these in config/settings.local.yml"
|
||||
puts "To prevent unexpected behaviour, please copy any custom settings to config/settings.local.yml"
|
||||
puts " and then remove your config/application.yml file."
|
||||
exit!
|
||||
end
|
||||
# rubocop:enable Rails/Output, Rails/Exit
|
||||
|
||||
# Set the STATUS constant from the environment, if it matches a recognized value
|
||||
ALLOWED_STATUS = [
|
||||
:online, # online and operating normally
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue