Fix 2.4.2 upgrade notes formatting refs #19330
[arvados.git] / apps / workbench / app / views / api_client_authorizations / _show_help.html.erb
1 <%# Copyright (C) The Arvados Authors. All rights reserved.
2
3 SPDX-License-Identifier: AGPL-3.0 %>
4
5 <pre>
6 ### Pasting the following lines at a shell prompt will allow Arvados SDKs
7 ### to authenticate to your account, <%= current_user.email %>
8
9 read ARVADOS_API_TOKEN &lt;&lt;EOF
10 <%= Thread.current[:arvados_api_token] %>
11 EOF
12 export ARVADOS_API_TOKEN ARVADOS_API_HOST=<%= current_api_host %>
13 <% if Rails.configuration.TLS.Insecure %>
14 export ARVADOS_API_HOST_INSECURE=true
15 <% else %>
16 unset ARVADOS_API_HOST_INSECURE
17 <% end %>
18 </pre>