workbench: Document integration test dependencies.
[arvados.git] / apps / workbench / 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 common:
14   # At minimum, you need a nice long randomly generated secret_token here.
15   secret_token: ~
16
17   # You probably also want to point to your API server.
18   arvados_login_base: https://arvados.local:3000/login
19   arvados_v1_base: https://arvados.local:3000/arvados/v1
20   arvados_insecure_https: true
21
22 test:
23   # When you run the Workbench's integration tests, it starts the API server
24   # as a dependency.  These settings should match the API server's Rails
25   # defaults.  If you adjust those, change these settings to match.
26   arvados_login_base: https://localhost:3001/login
27   arvados_v1_base: https://localhost:3001/arvados/v1
28   arvados_insecure_https: true