mirror of
https://github.com/chenasraf/snpr.git
synced 2026-05-18 01:39:01 +00:00
Replaced Resque.enqueue with Sidekiq equivalent. Added include statements to all jobs. Configured ActiveRecords connection pool. Changed all queues to fit Sidekiqs wants.
22 lines
282 B
Plaintext
22 lines
282 B
Plaintext
base: &base
|
|
adapter: postgresql
|
|
username: snpr
|
|
password: secret
|
|
pool: 25
|
|
|
|
development:
|
|
<<: *base
|
|
database: snpr_development
|
|
|
|
test:
|
|
<<: *base
|
|
database: snpr_test
|
|
|
|
production:
|
|
<<: *base
|
|
database: snpr_production
|
|
|
|
staging:
|
|
<<: *base
|
|
database: snpr_production
|