summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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 += \