about summary refs log tree commit diff
path: root/config/initializers/redis.rb
blob: 3825710b87a7d18f4fe039c66fc4c47e2160e295 (plain) (blame)
1
2
3
4
5
6
7
# frozen_string_literal: true

Redis.current = Redis.new(
  host: ENV.fetch('REDIS_HOST') { 'localhost' },
  port: ENV.fetch('REDIS_PORT') { 6379 },
  driver: :hiredis
)