The code powering m.abunchtell.com https://m.abunchtell.com
Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 
 
 

9 linhas
221 B

  1. # frozen_string_literal: true
  2. Redis.current = Redis.new(
  3. host: ENV.fetch('REDIS_HOST') { 'localhost' },
  4. port: ENV.fetch('REDIS_PORT') { 6379 },
  5. password: ENV.fetch('REDIS_PASSWORD') { false },
  6. driver: :hiredis
  7. )