|
Revision 260, 0.7 KB
(checked in by trivoallan, 3 years ago)
|
|
cleverbox :
- Added licence information to all project's file. Fixes #28
- Fixed version number in O.4's setup.py
|
| Line | |
|---|
| 1 | == Prerequisites == |
|---|
| 2 | |
|---|
| 3 | * `python-2.4+` |
|---|
| 4 | * `apache-2.0+` |
|---|
| 5 | * `mod_python-3.0+` |
|---|
| 6 | * `trac-0.10+` |
|---|
| 7 | * `subversion-1.2+` |
|---|
| 8 | |
|---|
| 9 | == Installation == |
|---|
| 10 | |
|---|
| 11 | '''All operations must be performed as root.''' |
|---|
| 12 | |
|---|
| 13 | === Source install === |
|---|
| 14 | |
|---|
| 15 | * Grab the latest sources from project's svn repository : |
|---|
| 16 | {{{ |
|---|
| 17 | svn export http://www.clever-age.org/svn/cleverbox/trunk |
|---|
| 18 | }}} |
|---|
| 19 | * Install sources : |
|---|
| 20 | {{{ |
|---|
| 21 | python setup.py install |
|---|
| 22 | }}} |
|---|
| 23 | * Enable the `dav_fs` and `dav_svn` apache modules |
|---|
| 24 | |
|---|
| 25 | == Initialisation == |
|---|
| 26 | * Create the directory that will hold apache configuration and cleverobx preferences : |
|---|
| 27 | {{{ |
|---|
| 28 | mkdir /etc/cleverbox |
|---|
| 29 | }}} |
|---|
| 30 | * Initialize environment : |
|---|
| 31 | {{{ |
|---|
| 32 | cleverbox-admin /etc/cleverbox initenv |
|---|
| 33 | }}} |
|---|
| 34 | Provide informations required by script, follow its instructions regarding apache configuration. |
|---|
| 35 | |
|---|
| 36 | That's it ! |
|---|