X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/392c382ddaf8ea4c0c4b6655c7f508de73274d12..cdf7b162906cb37d4ecf88ff6c72433bcdd8fc84:/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 be6a04de21..eaf4edecdd 100644 --- a/doc/install/install-workbench-app.html.textile.liquid +++ b/doc/install/install-workbench-app.html.textile.liquid @@ -9,11 +9,45 @@ h2. Prerequisites # A GNU/linux (virtual) machine (can be shared with the API server) # A hostname for your Workbench application +h2. Install dependencies + +If you haven't already installed the API server on the same host: + +* Install Ruby 2.1 and Bundler: see the "dependencies" and "Ruby" sections on the "API server installation page":install-api-server.html#dependencies for details. +* Omit postgresql. Workbench doesn't need its own database. + +Install graphviz. + + +
~$ sudo apt-get install graphviz
+
+
+ h2. Download the source tree -Please follow the instructions on the "Download page":https://arvados.org/projects/arvados/wiki/Download in the wiki. + +
~$ cd $HOME # (or wherever you want to install)
+~$ git clone https://github.com/curoverse/arvados.git
+
+ +See also: "Downloading the source code":https://arvados.org/projects/arvados/wiki/Download on the Arvados wiki. + +The Workbench application is in @apps/workbench@ in the source tree. + +h2. Install gem dependencies + + +
~$ cd arvados/apps/workbench
+~/arvados/apps/workbench$ bundle install
+
+
-The Workbench application is in @arvados/apps/workbench@. +Alternatively, if you don't have sudo/root privileges on the host, install the gems in your own directory instead of installing them system-wide: + + +
~$ cd arvados/apps/workbench
+~/arvados/apps/workbench$ bundle install --path=vendor/bundle
+
h2. Configure the Workbench application @@ -30,23 +64,39 @@ Copy @config/application.yml.example@ to @config/application.yml@ and edit it ap * 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@. +* If 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. -h3. Apache/Passenger (optional) +h2. Start a standalone server -Set up Apache and Passenger. Point them to the apps/workbench directory in the source tree. +For testing and development, the easiest way to get started is to run the web server that comes with Rails. + + +
~/arvados/apps/workbench$ bundle exec rails server --port=3031
+
+
+ +Point your browser to http://your.host:3031/. h2. Trusted client setting -Log in to Workbench once (this ensures that the Arvados API server has a record of the Workbench client). +Log in to Workbench once to ensure that the Arvados API server has a record of the Workbench client. (It's OK if Workbench says your account hasn't been activated yet. We'll deal with that next.) -In the API server project root, start the rails console. Locate the ApiClient record for your Workbench installation, then set the `is_trusted` flag for the appropriate client record: +In the API server project root, start the rails console. Locate the ApiClient record for your Workbench installation (typically, while you're setting this up, the @last@ one in the database is the one you want), then set the @is_trusted@ flag for the appropriate client record: -
~/arvados/services/api$ RAILS_ENV=development bundle exec rails console
-irb(main):001:0> ApiClient.where('url_prefix like ?', '%workbench%')
-=> {:id => 1234}
-irb(main):002:0> ApiClient.find(1234).update_attributes is_trusted: true
+
~/arvados/services/api$ bundle exec rails console
+irb(main):001:0> wb = ApiClient.all.last; [wb.url_prefix, wb.created_at]
+=> ["https://workbench.example.com/", Sat, 19 Apr 2014 03:35:12 UTC +00:00]
+irb(main):002:0> include CurrentApiClient
+=> true
+irb(main):003:0> act_as_system_user do wb.update_attributes!(is_trusted: true) end
+=> true
 
+ +h2. Activate your own account + +Unless you already activated your account when installing the API server, the first time you log in to Workbench you will see a message that your account is awaiting activation. + +Activate your own account and give yourself administrator privileges by following the instructions in the "'Add an admin user' section of the API server install page":install-api-server.html#admin-user.