From 4d6af27f0d12217c9a0056ebdd2af32536f8993f Mon Sep 17 00:00:00 2001
From: Jonas Smedegaard <dr@jones.dk>
Date: Thu, 3 Feb 2011 21:06:20 +0100
Subject: Add sample config.

---
 config/include.mk | 29 +++++++++++++++++++++++++++++
 1 file changed, 29 insertions(+)
 create mode 100644 config/include.mk

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 += \
-- 
cgit v1.2.3