8784: Fix test for latest firefox.
[arvados.git] / apps / workbench / app / views / users / _current_token.html.erb
1 <div class="panel panel-default">
2   <div class="panel-heading">
3     <h4 class="panel-title">
4       <a data-parent="#arv-adv-accordion" href="/current_token">
5         Current Token
6       </a>
7     </h4>
8   </div>
9
10 <div id="#manage_current_token" class="panel-body">
11 <p>The Arvados API token is a secret key that enables the Arvados SDKs to access Arvados with the proper permissions. For more information see <%= link_to raw('Getting an API token'), "#{Rails.configuration.arvados_docsite}/user/reference/api-tokens.html", target: "_blank"%>.</p>
12 <p>Paste the following lines at a shell prompt to set up the necessary environment for Arvados SDKs to authenticate to your <b><%= current_user.username %></b> account.</p>
13
14 <pre>
15 HISTIGNORE=$HISTIGNORE:'export ARVADOS_API_TOKEN=*'
16 export ARVADOS_API_TOKEN=<%= Thread.current[:arvados_api_token] %>
17 export ARVADOS_API_HOST=<%= current_api_host %>
18 <% if Rails.configuration.arvados_insecure_https %>
19 export ARVADOS_API_HOST_INSECURE=true
20 <% else %>
21 unset ARVADOS_API_HOST_INSECURE
22 <% end %>
23 </pre>
24 <p>Arvados<%= link_to virtual_machines_user_path(current_user) do%> virtual machines<%end%> do this for you automatically. This setup is needed only when you use the API remotely (e.g., from your own workstation).</p>
25 </div>
26 </div>