2761: add diagnostics section to config
[arvados.git] / apps / workbench / config / application.default.yml
index e5c88b2430bf7ef2d5847f517502b87c8d46659c..1a6bd026f3b42a6248579703687bffaed8ce64ec 100644 (file)
@@ -12,6 +12,7 @@ development:
   assets.debug: true
   profiling_enabled: true
   site_name: Arvados Workbench (dev)
+  local_modified: <%= '-modified' if `git status -s` %>
 
 production:
   force_ssl: true
@@ -60,7 +61,6 @@ test:
 
   # Enable user profile with one required field
   user_profile_form_fields:
-    - message: Welcome to Curoverse.
     - key: organization
       type: text
       form_field_title: Institution
@@ -99,15 +99,12 @@ common:
   # Default is set to false. A commented setting with full description is provided below.
   user_profile_form_fields: false
 
-  # Below is a sample setting of user_profile_form_fields.
+  # Below is a sample setting of user_profile_form_fields config parameter.
   # This configuration parameter should be set to either false (to disable) or
-  # to an array as shown below. This parameter supports two types of fields,
-  # an optional "message" and an optional list of input fields.
-  # Use "message" to configure the message you want to display at the top of the
-  # profile page. If this is not provided, a default message will be displayed.
+  # to an array as shown below. 
   # Configure the list of input fields to be displayed in the profile page
   # using the attribute "key" for each of the input fields.
-  # This sample shows configuration with message and two input fields.
+  # This sample shows configuration with one required and one optional form fields.
   # For each of these input fields:
   #   You can specify "type" as "text" or "select".
   #   List the "options" to be displayed for each of the "select" menu.
@@ -115,7 +112,6 @@ common:
   # If any of the required fields are missing in the user's profile, the user will be
   # redirected to the profile page before they can access any Workbench features.
   #user_profile_form_fields:
-  #  - message: Welcome to Curoverse. Any fields in red are required and missing. Please fill in those fields before you can access Arvados Workbench.
   #  - key: organization
   #    type: text
   #    form_field_title: Institution/Company
@@ -133,5 +129,49 @@ common:
   #      - IT
   #      - Other
 
-  # email address to which mail should be sent when the user creates profile for the first time
-  user_profile_notification_address: false
+  # Use "user_profile_form_message" to configure the message you want to display on
+  # the profile page.
+  user_profile_form_message: Welcome to Arvados. All <span style="color:red">required fields</span> must be completed before you can proceed.
+
+  # source_version
+  source_version: "<%= `git log -n 1 --format=%h` %>"
+  local_modified: false
+
+  # report notification to and from addresses
+  issue_reporter_email_from: arvados@example.com
+  issue_reporter_email_to: arvados@example.com
+  support_email_address: arvados@example.com
+
+#  # Configuration for diagnostics testing. See the "diagnostics" section for more explanation.
+#  arvados_workbench_url: false
+#  diagnostics_testing_user_tokens: false
+#  diagnostics_testing_pipeline_fields: false
+
+  # filename suffixes for which view icon would be shown in collection show page
+  filename_suffixes_with_view_icon: [txt, gif, jpeg, jpg, png, html, htm, pdf]
+
+# Below is a sample setting for diagnostics testing.
+# Configure test user tokens as "diagnostics_testing_user_tokens".
+#   At this time the tests need an "active" user token.
+# Also, configure the pipelines to be executed as "diagnostics_testing_pipeline_fields".
+# For each of the pipelines identified by the name of your choice
+#     ("tutorial pipeline" and "tutorial pipeline 2" in this sample):
+#   template_uuid: is the uuid of the template to be executed
+#   input_paths: an array of inputs for the pipeline. Use either a collection's "uuid"
+#     or a file's "uuid/file_name" path in this array. If the pipeline does not require
+#     any inputs, this can be omitted. 
+#   max_wait_seconds: max time in seconds to wait for the pipeline run to complete.
+#     Default value of 30 seconds is used when this value is not provided.
+
+diagnostics:
+  arvados_workbench_url: https://localhost:3000/
+  diagnostics_testing_user_tokens:
+    active: eu33jurqntstmwo05h1jr3eblmi961e802703y6657s8zb14r
+  diagnostics_testing_pipeline_fields:
+    tutorial pipeline 1:
+      template_uuid: zzzzz-p5p6p-rxj8d71854j9idn
+      input_paths: [zzzzz-4zz18-nz98douzhaa3jh2]
+      max_wait_seconds: 10
+    tutorial pipeline 2:
+      template_uuid: zzzzz-p5p6p-1xbobfobk94ppbv
+      input_paths: [zzzzz-4zz18-nz98douzhaa3jh2, zzzzz-4zz18-gpw9o5wpcti3nib]