summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonas Smedegaard <dr@jones.dk>2011-02-03 21:06:20 +0100
committerJonas Smedegaard <dr@jones.dk>2011-02-03 21:06:20 +0100
commit4d6af27f0d12217c9a0056ebdd2af32536f8993f (patch)
tree620c186b00cfff037515e22103bb3dd9fad3fa62
parent42f7ea4ac250c041059848f4f51ee0fc4479de9c (diff)
Add sample config.
-rw-r--r--config/include.mk29
1 files changed, 29 insertions, 0 deletions
diff --git a/config/include.mk b/config/include.mk
new file mode 100644
index 0000000..864ebd2
--- /dev/null
+++ b/config/include.mk
@@ -0,0 +1,29 @@
+domain = example.com
+gitrepo = site/content
+
+plugins = goodstuff \
+
+plugins-off =
+
+admins =
+
+IKIWIKI_CONFIG_OPTIONS = \
+ --wikiname 'SampleWiki' \
+ --adminemail 'webmaster@$(domain)' \
+ $(patsubst %,--adminuser '%',$(admins)) \
+ $(patsubst %,--plugin %,$(plugins)) \
+ $(patsubst %,--disable-plugin %,$(plugins-off)) \
+
+# collaboration/aggregation
+IKIWIKI_CONFIG_OPTIONS += \
+ --allowrss \
+ --allowatom \
+
+# styling
+IKIWIKI_CONFIG_OPTIONS += \
+
+# CGI
+IKIWIKI_CONFIG_OPTIONS += \
+
+# VCS
+IKIWIKI_CONFIG_OPTIONS += \