8784: Fix test for latest firefox.
[arvados.git] / services / api / config / database.yml.example
1 development:
2   adapter: postgresql
3   template: template0
4   encoding: utf8
5   database: arvados_development
6   username: arvados
7   password: xxxxxxxx
8   host: localhost
9
10 test:
11   adapter: postgresql
12   template: template0
13   encoding: utf8
14   database: arvados_test
15   username: arvados
16   password: xxxxxxxx
17   host: localhost
18
19 production:
20   adapter: postgresql
21   template: template0
22   encoding: utf8
23   database: arvados_production
24   username: arvados
25   password: xxxxxxxx
26   host: localhost
27   # For the websockets server, prefer a larger database connection pool size since it
28   # multithreaded and can serve a large number of long-lived clients.  See also
29   # websocket_max_connections configuration option.
30   pool: 50