Edit page Geeki/Install
authorbernie <bernie@88.45.42.150>
Mon, 27 Jul 2009 14:40:10 +0000 (16:40 +0200)
committerGeekiGeeki <webmaster@codewiz.org>
Mon, 27 Jul 2009 14:40:10 +0000 (16:40 +0200)
Geeki/Install [new file with mode: 0644]

diff --git a/Geeki/Install b/Geeki/Install
new file mode 100644 (file)
index 0000000..7d8c9e2
--- /dev/null
@@ -0,0 +1,30 @@
+The easiest way is:
+
+ * clone the git repository anywhere you like
+ * edit **wiki_apache.conf** to adapt it to your system, and move or link it to your Apache configuration directory.
+ * customize the wiki through geekigeeki.conf.py
+ * create a git repository for your wiki:
+ {{{
+ mkdir data
+ cd data
+ git init --shared=group
+ chgrp -R apache .
+ }}}
+ * reload Apache
+
+== Update procedure ==
+
+If you cloned the repository as suggested, updating and downgrading is easy:
+
+{{{
+git pull
+}}}
+
+to switch to a different version of GeekiGeeki:
+
+{{{
+git checkout {tree-ish}
+}}}
+
+where '##{tree-ish}## could be a tag, a branch name, or a specific commit.
+