mirror of
https://github.com/Growstuff/growstuff.git
synced 2026-01-24 01:07:52 -05:00
36 lines
652 B
YAML
36 lines
652 B
YAML
development:
|
|
adapter: sqlite3
|
|
database: db/growstuff_dev.sqlite3
|
|
pool: 5
|
|
timeout: 5000
|
|
|
|
test:
|
|
adapter: sqlite3
|
|
database: db/growstuff_test.sqlite3
|
|
pool: 5
|
|
timeout: 5000
|
|
|
|
# should be identical to test apart from running on postgres
|
|
travis:
|
|
adapter: postgresql
|
|
database: growstuff_test
|
|
username: postgres
|
|
|
|
production:
|
|
adapter: postgresql
|
|
database: growstuff_prod
|
|
pool: 5
|
|
timeout: 5000
|
|
username: growstuff
|
|
host: localhost
|
|
password: thisisnottherealpassword
|
|
|
|
staging:
|
|
adapter: postgresql
|
|
database: growstuff_prod
|
|
pool: 5
|
|
timeout: 5000
|
|
username: growstuff
|
|
host: localhost
|
|
password: thisisnottherealpassword
|