|
Revision 350, 0.8 KB
(checked in by trivoallan, 4 years ago)
|
|
cleverbox : source installation fixes.
|
| 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 | * `setuptools-0.6b1+` |
|---|
| 9 | |
|---|
| 10 | == Installation == |
|---|
| 11 | |
|---|
| 12 | '''All operations must be performed as root.''' |
|---|
| 13 | |
|---|
| 14 | === Source install === |
|---|
| 15 | |
|---|
| 16 | * Grab the latest sources from project's svn repository : |
|---|
| 17 | {{{ |
|---|
| 18 | svn export http://www.clever-age.org/svn/cleverbox/trunk |
|---|
| 19 | }}} |
|---|
| 20 | * Install sources : |
|---|
| 21 | {{{ |
|---|
| 22 | python setup.py install |
|---|
| 23 | }}} |
|---|
| 24 | * Enable the `dav_fs` and `dav_svn` apache modules |
|---|
| 25 | |
|---|
| 26 | == Initialisation == |
|---|
| 27 | * Create the directory that will hold apache configuration and cleverobx preferences : |
|---|
| 28 | {{{ |
|---|
| 29 | mkdir /etc/cleverbox |
|---|
| 30 | }}} |
|---|
| 31 | * Initialize environment : |
|---|
| 32 | {{{ |
|---|
| 33 | cleverbox-admin /etc/cleverbox initenv |
|---|
| 34 | }}} |
|---|
| 35 | Provide informations required by script, follow its instructions regarding apache configuration. |
|---|
| 36 | |
|---|
| 37 | That's it ! |
|---|