Merge branch '8784-dir-listings'
[arvados.git] / services / api / config / database.yml.example
1 # Copyright (C) The Arvados Authors. All rights reserved.
2 #
3 # SPDX-License-Identifier: AGPL-3.0
4
5 development:
6   adapter: postgresql
7   template: template0
8   encoding: utf8
9   database: arvados_development
10   username: arvados
11   password: xxxxxxxx
12   host: localhost
13
14 test:
15   adapter: postgresql
16   template: template0
17   encoding: utf8
18   database: arvados_test
19   username: arvados
20   password: xxxxxxxx
21   host: localhost
22
23 production:
24   adapter: postgresql
25   template: template0
26   encoding: utf8
27   database: arvados_production
28   username: arvados
29   password: xxxxxxxx
30   host: localhost
31   # For the websockets server, prefer a larger database connection pool size since it
32   # multithreaded and can serve a large number of long-lived clients.  See also
33   # websocket_max_connections configuration option.
34   pool: 50