summary refs log tree commit diff
path: root/UPGRADE.rst
diff options
context:
space:
mode:
authorMark Haines <mark.haines@matrix.org>2015-08-20 15:08:18 +0100
committerMark Haines <mark.haines@matrix.org>2015-08-20 15:08:18 +0100
commitbb9611bd46c77252e7ecf3ef90251cf4cd2f446e (patch)
tree9cb2f3aadfcb38fc1dc412a4ae8f627f74eabdc1 /UPGRADE.rst
parentBump version and changelog (diff)
downloadsynapse-bb9611bd46c77252e7ecf3ef90251cf4cd2f446e.tar.xz
Add generic update instructions to UPGRADE.rst and add link to them from the README.rst
Diffstat (limited to 'UPGRADE.rst')
-rw-r--r--UPGRADE.rst33
1 files changed, 33 insertions, 0 deletions
diff --git a/UPGRADE.rst b/UPGRADE.rst
index d98460f643..a82dabbd3c 100644
--- a/UPGRADE.rst
+++ b/UPGRADE.rst
@@ -1,3 +1,36 @@
+Upgrading Synapse
+=================
+
+Before upgrading check if any special steps are required to upgrade from the
+what you currently have installed to current version of synapse. The extra
+instructions that may be required are listed later in this document.
+
+If you installed synapse in a virtualenv then active that virtualenv before
+upgrading. If synapse is installed in a virtualenv in ``~/.synapse/`` then run:
+
+.. code:: bash
+
+    source ~/.synapse/bin/activate
+
+If you installed synapse using pip then upgrade to the latest version by
+running:
+
+.. code:: bash
+
+    pip install --upgrade --process-dependency-links https://github.com/matrix-org/synapse/tarball/master
+
+If you installed synapse using git then upgrade to the latest version by
+running:
+
+.. code:: bash
+
+    # Pull the latest version of the master branch.
+    git pull
+    # Update the versions of synapses python dependencies.
+    python synapse/python_dependencies.py | xargs -n1 pip install
+
+
+
 Upgrading to v0.9.0
 ===================