Config: Stop if 'hmac_key' is the default value

This commit is contained in:
Samantaz Fox 2023-07-01 19:38:50 +02:00
parent f64e311dcd
commit ba43365acb
No known key found for this signature in database
GPG Key ID: F42821059186176E
1 changed files with 3 additions and 0 deletions

View File

@ -209,6 +209,9 @@ class Config
if config.hmac_key.empty?
puts "Config: 'hmac_key' is required/can't be empty"
exit(1)
elsif config.hmac_key == "CHANGE_ME!!"
puts "Config: The value of 'hmac_key' needs to be changed!!"
exit(1)
end
# Build database_url from db.* if it's not set directly