]> git.openstreetmap.org Git - rails.git/blobdiff - config/initializers/config.rb
Move application.yml check to config initializer
[rails.git] / config / initializers / config.rb
index 80997e0dc90ac455f018fcf88bc7603cf09141ad..f7d5d79249eb43243caabc463273871e98bee8b6 100644 (file)
@@ -1,3 +1,20 @@
+# 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?(Rails.root.join("config", "application.yml"))
+  puts "The config/application.yml file is no longer supported."
+  puts ""
+  puts "Default settings are now found in config/settings.yml and you"
+  puts "can override these in config/settings.local.yml."
+  puts ""
+  puts "To prevent unexpected behaviour, please copy any custom"
+  puts "settings to config/settings.local.yml and then remove"
+  puts "your config/application.yml file."
+  exit!
+end
+# rubocop:enable Rails/Output, Rails/Exit
+
 # Allowed status values
 ALLOWED_STATUS ||= [
   "online",            # online and operating normally