Edit page Geeki/Install
[wiki.git] / Geeki / Install
1 The easiest way is:
2
3  * clone the git repository anywhere you like
4  * edit **wiki_apache.conf** to adapt it to your system, and move or link it to your Apache configuration directory.
5  * customize the wiki through geekigeeki.conf.py
6  * create a git repository for your wiki:
7  {{{
8  mkdir data
9  cd data
10  git init --shared=group
11  chgrp -R apache .
12  }}}
13  * reload Apache
14
15 == Update procedure ==
16
17 If you cloned the repository as suggested, updating and downgrading is easy:
18
19 {{{
20 git pull
21 }}}
22
23 to switch to a different version of GeekiGeeki:
24
25 {{{
26 git checkout {tree-ish}
27 }}}
28
29 where '##{tree-ish}## could be a tag, a branch name, or a specific commit.
30