Merge branch '8784-dir-listings'
[arvados.git] / services / api / config / application.yml.example
1 # Copyright (C) The Arvados Authors. All rights reserved.
2 #
3 # SPDX-License-Identifier: AGPL-3.0
4
5 # Copy this file to application.yml and edit to suit.
6 #
7 # Consult application.default.yml for the full list of configuration
8 # settings.
9 #
10 # The order of precedence is:
11 # 1. config/environments/{RAILS_ENV}.rb (deprecated)
12 # 2. Section in application.yml corresponding to RAILS_ENV (e.g., development)
13 # 3. Section in application.yml called "common"
14 # 4. Section in application.default.yml corresponding to RAILS_ENV
15 # 5. Section in application.default.yml called "common"
16
17 production:
18   # Mandatory site configuration.  See application.default.yml and
19   # http://http://doc.arvados.org/install/install-api-server.html#configure_application
20   # for more information.
21   uuid_prefix: ~
22   secret_token: ~
23   blob_signing_key: ~
24   sso_app_secret: ~
25   sso_app_id: ~
26   sso_provider_url: ~
27   workbench_address: ~
28   websocket_address: ~
29   #git_repositories_dir: ~
30   #git_internal_dir: ~
31
32 development:
33   # Separate settings for development configuration.
34   uuid_prefix: ~
35   secret_token: ~
36   blob_signing_key: ~
37   sso_app_id: ~
38   sso_app_secret: ~
39   sso_provider_url: ~
40   workbench_address: ~
41   websocket_address: ~
42   #git_repositories_dir: ~
43   #git_internal_dir: ~
44
45 test:
46   # Tests should be able to run without further configuration, but if you do
47   # want to change your local test configuration, this is where to do it.
48
49 common:
50   # Settings in this section will be used in all environments
51   # (development, production, test) except when overridden in the
52   # environment-specific sections above.