SSO installation doc fix: to run rails console, you need to be in the
authorWard Vandewege <ward@curoverse.com>
Wed, 21 Oct 2015 15:19:46 +0000 (11:19 -0400)
committerWard Vandewege <ward@curoverse.com>
Wed, 21 Oct 2015 15:19:46 +0000 (11:19 -0400)
/var/www/arvados-sso/current directory.

closes #7623

doc/install/install-sso.html.textile.liquid

index 56c7a4b337eb5eb0c2b6c8fbd2aa47675e353b7c..ca620f478a8d215066fde5a9ffa157032174f4db 100644 (file)
@@ -164,7 +164,8 @@ Use @rails console@ to create a @Client@ record that will be used by the Arvados
 <notextile>
 <pre><code>~$ <span class="userinput">ruby -e 'puts rand(2**400).to_s(36)'</span>
 xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
-~$ <span class="userinput">RAILS_ENV=production bundle exec rails console</span>
+~$ <span class="userinput">cd /var/www/arvados-sso/current</span>
+/var/www/arvados-sso/current$ <span class="userinput">RAILS_ENV=production bundle exec rails console</span>
 :001 &gt; <span class="userinput">c = Client.new</span>
 :002 &gt; <span class="userinput">c.name = "joshid"</span>
 :003 &gt; <span class="userinput">c.app_id = "arvados-server"</span>