Browse Source

Ability to specify Redis passwd on mastodon:setup (#7222)

Closes #7221
pull/4/head
David Baucum 6 years ago
committed by Eugen Rochko
parent
commit
ca9192d9ba
1 changed files with 7 additions and 0 deletions
  1. +7
    -0
      lib/tasks/mastodon.rake

+ 7
- 0
lib/tasks/mastodon.rake View File

@ -107,9 +107,16 @@ namespace :mastodon do
q.convert :int
end
env['REDIS_PASSWORD'] = prompt.ask('Redis password:') do |q|
q.required false
a.default nil
q.modify :strip
end
redis_options = {
host: env['REDIS_HOST'],
port: env['REDIS_PORT'],
password: env['REDIS_PASSWORD'],
driver: :hiredis,
}

Loading…
Cancel
Save