Remove OTP_SECRET env configuration from setup (#34757)

This commit is contained in:
Matt Jankowski 2025-05-21 11:08:46 -04:00 committed by GitHub
parent 8c51a8ba94
commit 3a5e310a6d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 1 additions and 10 deletions

View file

@ -32,7 +32,7 @@ namespace :mastodon do
prompt.say('Single user mode disables registrations and redirects the landing page to your public profile.')
env['SINGLE_USER_MODE'] = prompt.yes?('Do you want to enable single user mode?', default: false)
%w(SECRET_KEY_BASE OTP_SECRET).each do |key|
%w(SECRET_KEY_BASE).each do |key|
env[key] = SecureRandom.hex(64)
end