1
0
Fork 0
This repository has been archived on 2023-03-27. You can view files and clone it, but cannot push or open issues or pull requests.
lpr-partynest/config/settings/sidekiq_client.yml

18 lines
668 B
YAML

default: &default
redis_host: <%= ENV.fetch('SIDEKIQ_CLIENT_REDIS_HOST') { 'localhost' } %>
redis_port: <%= ENV.fetch('SIDEKIQ_CLIENT_REDIS_PORT') { 6379 } %>
redis_password: <%= ENV.fetch('SIDEKIQ_CLIENT_REDIS_PASSWORD') { 'password' } %>
development:
<<: *default
redis_db: <%= ENV.fetch('SIDEKIQ_CLIENT_REDIS_DB') { 0 } %>
test:
<<: *default
redis_db: <%= ENV.fetch('SIDEKIQ_CLIENT_REDIS_DB') { 15 } %>
production:
redis_host: 'db-redis-ams3-76837-do-user-4455684-0.db.ondigitalocean.com'
redis_port: 25061
redis_password: <%= Rails.application.credentials.sidekiq_client_redis_password %>
redis_db: 0