diff options
Diffstat (limited to 'docs/installing')
-rw-r--r-- | docs/installing/deploy.md | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/docs/installing/deploy.md b/docs/installing/deploy.md index 5795f1a22..c71c987bb 100644 --- a/docs/installing/deploy.md +++ b/docs/installing/deploy.md @@ -91,7 +91,6 @@ Next, on your local machine: * `cd` into the Alaveteli repo you checked out (otherwise the `cap` commands you're about to execute won't work) * still on your local machine, run `cap -S stage=staging deploy:setup` to setup capistrano on the server -* again on your local machine, run `cap -S stage=staging deploy:update_code` to get a code checkout on the server Back on the server: @@ -111,11 +110,13 @@ Back on the server: `shared` directory created by Capistrano on the server: * `cache/` * `files/` + * `lib/acts_as_xapian/xapiandbs` (copy this to straight into `shared` so it becomes `shared/xapiandbs`) * `log/` Now, back on your local machine: * make sure you're still in the Alaveteli repo (if not, `cd` back into it) +* run `cap -S stage=staging deploy:update_code` to get a code checkout on the server. * create a deployment directory on the server by running *one* of these commands: * `cap deploy` if you're deploying a <a href="{{site.baseurl}}docs/glossary/#staging" class="glossary__link">staging site</a>, or... * `cap -S stage=production deploy` for <a href="{{site.baseurl}}docs/glossary/#production" class="glossary__link">production</a> |