closes #3038
[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 development:
14   # Mandatory site secrets. See application.default.yml for more info.
15   secret_token: ~
16   blob_signing_key: ~
17
18   # Visitors to the API server will be redirected to the workbench.
19   workbench_address: https://workbench.local:3031/
20
21 production:
22   # Mandatory site secrets. See application.default.yml for more info.
23   secret_token: ~
24   blob_signing_key: ~
25   uuid_prefix: bogus
26
27   # Visitors to the API server will be redirected to the workbench.
28   workbench_address: ~
29
30 test:
31   # Tests should be able to run without further configuration, but if you do
32   # want to change your local test configuration, this is where to do it.
33
34 common:
35   # Settings in this section will be used in all environments
36   # (development, production, test) except when overridden in the
37   # environment-specific sections above.