summaryrefslogtreecommitdiff
path: root/docs/en/install.rst
diff options
context:
space:
mode:
Diffstat (limited to 'docs/en/install.rst')
-rw-r--r--docs/en/install.rst29
1 files changed, 25 insertions, 4 deletions
diff --git a/docs/en/install.rst b/docs/en/install.rst
index 1bb5771..59884b7 100644
--- a/docs/en/install.rst
+++ b/docs/en/install.rst
@@ -5,15 +5,18 @@ Installation
============
:Author: Étienne Loks
-:date: 2013-02-01
+:date: 2013-03-16
:Copyright: CC-BY 3.0
This document presents the installation of Chimère.
-It has been updated for version 2.0.0.
Prerequisites
*************
+If you want to install the Chimère package for Debian Wheezy dependencies are
+managed by the package.
+You can go to the next section of the documentation.
+
- `Apache <http://www.apache.org/>`_ version 2.x
- `Python <http://www.python.org/>`_ versions 2.6 or 2.7
- `Django <http://www.djangoproject.com/>`_ >= version 1.4
@@ -103,6 +106,23 @@ Choose a path to install your Chimère::
INSTALL_PATH=/var/local/django
mkdir $INSTALL_PATH
+From Debian package
++++++++++++++++++++
+
+If you want to install the last stable version of Chimère
+and your system is under Debian Wheezy it is wise to use
+Chimère Debian packages.
+
+You can install Chimère this way.
+
+.. code-block:: bash
+
+ # add Chimère repository
+ echo "deb http://debian.peacefrogs.net wheezy main" >> /etc/apt/sources.list
+ apt-get update
+ # install
+ apt-get install python-django-chimere
+
From an archive
+++++++++++++++
@@ -131,11 +151,12 @@ From the Git repository
Another solution is to get it from the Git repository::
+ CHIMERE_LOCALNAME=mychimere
+ CHIMERE_BRANCH=v2.0 # choose v2.0 for stable ou master for bleeding edge
cd $INSTALL_PATH
git clone git://www.peacefrogs.net/git/chimere
cd chimere
- git tag -l # list tagged versions
- git checkout v2.0 # checkout the desired version
+ git checkout origin/$CHIMERE_BRANCH
Creating a custom project template