From f9e77be4a618ee3007fdc4208c2c2f74d2e64b38 Mon Sep 17 00:00:00 2001 From: Max Wofford Date: Wed, 7 May 2025 23:51:09 -0400 Subject: [PATCH] Don't require master key --- config/application.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/application.rb b/config/application.rb index 1ba007e..fbd5f11 100644 --- a/config/application.rb +++ b/config/application.rb @@ -24,7 +24,7 @@ module Highway # config.time_zone = "Central Time (US & Canada)" # config.eager_load_paths << Rails.root.join("extras") - # Set secret_key_base from environment variable - config.secret_key_base = ENV["SECRET_KEY_BASE"] + # Don't require master key + config.require_master_key = false end end