X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/7f60d6154322259117543c1e156b200585a90546..bef270550d49533c46df8741db9f9dfa67afc1b8:/doc/install/install-workbench-app.html.textile.liquid diff --git a/doc/install/install-workbench-app.html.textile.liquid b/doc/install/install-workbench-app.html.textile.liquid index 68a408a09e..be6a04de21 100644 --- a/doc/install/install-workbench-app.html.textile.liquid +++ b/doc/install/install-workbench-app.html.textile.liquid @@ -1,23 +1,23 @@ --- layout: default navsection: installguide -title: Install the Arvados workbench application +title: Install the Arvados Workbench application ... h2. Prerequisites # A GNU/linux (virtual) machine (can be shared with the API server) -# A hostname for your workbench application +# A hostname for your Workbench application h2. Download the source tree Please follow the instructions on the "Download page":https://arvados.org/projects/arvados/wiki/Download in the wiki. -The workbench application is in @arvados/apps/workbench@. +The Workbench application is in @arvados/apps/workbench@. h2. Configure the Workbench application -You need to update @config/initializers/secret_token.rb@. Generate a new secret: +This application needs a secret token. Generate a new secret:
~/arvados/apps/workbench$ rake secret
@@ -25,17 +25,12 @@ aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
 
-and put it in @config/initializers/secret_token.rb@ +Copy @config/application.yml.example@ to @config/application.yml@ and edit it appropriately for your environment. -
Server::Application.config.secret_token = 'aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa'
-
-
- -Adjust the following fields in your @environments/production.rb@ file. - -* @config.site_name@ can be the URL of your workbench install. -* @config.arvados_login_base@ and @config.arvados_v1_base@ should point to your "API server":install-api-server.html -* If you choose not to use https, make sure to also set @config.force_ssl = false@ in the API server's @production.rb@ file. +* Set @secret_token@ to the string you generated with @rake secret@. +* Point @arvados_login_base@ and @arvados_v1_base@ at your "API server":install-api-server.html +* @site_name@ can be any string to identify this Workbench. +* Assuming that the SSL certificate you use for development isn't signed by a CA, make sure @arvados_insecure_https@ is @true@. Copy @config/piwik.yml.example@ to @config/piwik.yml@ and edit to suit. @@ -55,5 +50,3 @@ irb(main):001:0> ApiClient.where('url_prefix like ?', irb(main):002:0> ApiClient.find(1234).update_attributes is_trusted: true - -