Skip to content

Commit

Permalink
Fix README.md to reflect the changes in the filesystem structure
Browse files Browse the repository at this point in the history
  • Loading branch information
Luca Wehrstedt committed Jun 27, 2012
1 parent e06b8f9 commit 1a1078b
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ If you prefer using Python Package Index, you can retrieve all Python
dependencies with this line (see below for the meaning of $REPO):

```bash
sudo pip install -r $REPO/cms/REQUIREMENTS.txt
sudo pip install -r $REPO/REQUIREMENTS.txt
```


Expand All @@ -195,10 +195,10 @@ Configuring and installing CMS
------------------------------

There are two configuration files, one for CMS itself and one for the
rankings. Samples for both files are in $REPO/cms/examples. You want
rankings. Samples for both files are in $REPO/examples. You want
to copy them to the same file names but without the ".sample" suffix
(that is, to $REPO/cms/example/cms.conf and
$REPO/cms/example/cms.ranking.conf) before modifying them.
(that is, to $REPO/examples/cms.conf and
$REPO/examples/cms.ranking.conf) before modifying them.

- cms.conf is intended to be the same in all servers; all
configurations are explained in the file; of particular importance is
Expand All @@ -212,7 +212,7 @@ $REPO/cms/example/cms.ranking.conf) before modifying them.
Once configured, we can proceed to install it using the commands:

```bash
cd $REPO/cms/
cd $REPO
sudo pip install ./
```

Expand All @@ -231,7 +231,7 @@ Updating CMS
To update CMS, run the following:

```bash
cd $REPO/cms
cd $REPO
git pull
sudo pip install -U ./
```
Expand All @@ -242,7 +242,7 @@ previous version, you may need to run UpdateDB.py to organize the data
in the new structure:

```bash
cd $REPO/cms/cms/db
cd $REPO/cms/db
python UpdateDB.py -l # To see which updating scripts are available.
python UpdateDB.py -s YYYYMMDD # To update the DB, where YYYYMMDD is
# the last date in which you created or
Expand Down

0 comments on commit 1a1078b

Please sign in to comment.