c3a9ac7391
and move secrets into Rails credentials for both beta and production environments.
22 lines
327 B
YAML
22 lines
327 B
YAML
default: &default
|
|
dispatchers:
|
|
- polling_interval: 1
|
|
batch_size: 500
|
|
workers:
|
|
- queues: "*"
|
|
threads: 3
|
|
processes: <%= ENV.fetch("JOB_CONCURRENCY", 1) %>
|
|
polling_interval: 0.1
|
|
|
|
development:
|
|
<<: *default
|
|
|
|
test:
|
|
<<: *default
|
|
|
|
production: &production
|
|
<<: *default
|
|
|
|
beta:
|
|
<<: *production
|