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