changeset 4922:5e66d3ec9880

docs/installation: add section on installation from repository source As we actually recommend this method, describe it as first option in the installation instructions.
author Thomas De Schampheleire <thomas.de.schampheleire@gmail.com>
date Sat, 14 Mar 2015 21:51:33 +0100
parents 24e426cd40ac
children 422667bdb47b
files docs/installation.rst
diffstat 1 files changed, 16 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/docs/installation.rst	Sat Mar 14 21:50:44 2015 +0100
+++ b/docs/installation.rst	Sat Mar 14 21:51:33 2015 +0100
@@ -10,6 +10,22 @@
 .. Note:: Alternative very detailed installation instructions for Ubuntu Server
    with celery, indexer and daemon scripts: https://gist.github.com/4546398
 
+Installing Kallithea from repository source
+-------------------------------------------
+
+The Kallithea development repository is stable and can be used in production.
+Follow these instructions::
+
+        hg clone https://kallithea-scm.org/repos/kallithea
+        cd kallithea
+        virtualenv ../kallithea-venv
+        source ../kallithea-venv/bin/activate
+        python setup.py develop
+
+You can now proceed to :ref:`setup`.
+
+To upgrade, simply update the repository with ``hg pull -u`` and restart the
+server.
 
 Installing Kallithea from Python Package Index (PyPI)
 -----------------------------------------------------