Merge commit 'refs/merge-requests/59' of git://gitorious.org/mediagoblin/mediagoblin...
authorRodney Ewing <ewing.rj@gmail.com>
Wed, 31 Jul 2013 22:07:44 +0000 (15:07 -0700)
committerRodney Ewing <ewing.rj@gmail.com>
Wed, 31 Jul 2013 22:07:44 +0000 (15:07 -0700)
1  2 
docs/source/siteadmin/deploying.rst

index 50fc05c5cef774ac8de5cee6d253cf2f8229f744,326d2243549826c22412e958a0f8faf0cd55b977..a892bbd42fdc79372d2676736c542966a5decdae
@@@ -151,20 -188,22 +188,23 @@@ Install MediaGoblin and Virtualen
     branch of the git repository. Eventually production deployments will
     want to transition to running from more consistent releases.
  
- Issue the following commands, to create and change the working
- directory. Modify these commands to reflect your own environment::
+ We will now clone the MediaGoblin source code repository and setup and
+ configure the necessary services. Modify these commands to
+ suit your own environment. As a reminder, you should enter these
+ commands using your unpriviledged system account.
  
-     mkdir -p /srv/mediagoblin.example.org/
-     cd /srv/mediagoblin.example.org/
+ Change to the MediaGoblin directory that you just created::
+     cd /srv/mediagoblin.example.org
  
 -Clone the MediaGoblin repository::
 +Clone the MediaGoblin repository and set up the git submodules::
  
      git clone git://gitorious.org/mediagoblin/mediagoblin.git
 +    cd mediagoblin
 +    git submodule init && git submodule update
  
And set up the in-package virtualenv::
Set up the in-package virtualenv::
  
 -    cd mediagoblin
      (virtualenv --system-site-packages . || virtualenv .) && ./bin/python setup.py develop
  
  .. note::