Install warehouse-apps into arvados/warehouse directly from github source.
[arvados.git] / docker / config.yml.example
1 # Configuration for the Rails databases (database names,
2 # usernames and passwords).
3
4 # ARVADOS_DOMAIN: the Internet domain of this installation.
5 # ARVADOS_DNS_SERVER: the authoritative nameserver for ARVADOS_DOMAIN.
6 ARVADOS_DOMAIN:         # e.g. arvados.internal
7 ARVADOS_DNS_SERVER:     # e.g. 192.168.0.1
8
9 # ==============================
10 # API server settings
11 # ==============================
12
13 # The API server hostname. Must be a 5-character
14 # string unique within this installation. This string
15 # will also be used as config.uuid_prefix.
16 API_HOSTNAME:           # e.g. qr1hi
17
18 # If a _PW variable is set to an empty string, a password
19 # will be chosen randomly at build time. This is the
20 # recommended setting.
21 ARVADOS_DEV_DB: arvados_development
22 ARVADOS_DEV_USER: arvados_dev
23 ARVADOS_DEV_PW:
24 ARVADOS_TEST_DB: arvados_test
25 ARVADOS_TEST_USER: arvados_test
26 ARVADOS_TEST_PW:
27 ARVADOS_PROD_DB: arvados_production
28 ARVADOS_PROD_USER: arvados_prod
29 ARVADOS_PROD_PW:
30
31 # More than anything this should be auto-generated, but
32 # we don't presently have a good place to store it. So just
33 # change it and don't be dumb.
34 POSTGRES_ROOT_PW: dummy_pw
35
36 # The APP_ID this application presents to Omniauth.
37 OMNIAUTH_APP_ID: arvados-server
38
39 # The URL for this installation's Omniauth server.
40 OMNIAUTH_URL: http://auth.clinicalfuture.com
41
42 # ==============================
43 # Workbench settings
44 # ==============================
45 WORKBENCH_RAILS_MODE: production
46 WORKBENCH_DATA_IMPORT_DIR: /data/arvados-workbench-upload/data
47 WORKBENCH_DATA_EXPORT_DIR: /data/arvados-workbench-download/data
48 WORKBENCH_VCF_PIPELINE_UUID:
49 WORKBENCH_SITE_NAME: Arvados Workbench
50 WORKBENCH_INSECURE_HTTPS: false
51 WORKBENCH_ACTIVATION_CONTACT_LINK: mailto:arvados@clinicalfuture.com
52 WORKBENCH_ARVADOS_LOGIN_BASE: https://@@API_HOSTNAME@@.@@ARVADOS_DOMAIN@@/login
53 WORKBENCH_ARVADOS_V1_BASE: https://@@API_HOSTNAME@@.@@ARVADOS_DOMAIN@@/arvados/v1
54 # /Workbench settings
55