summaryrefslogtreecommitdiff
path: root/config/include.mk
blob: 864ebd2a6c6b103bf68f3c1066a6d1fb87b7cf73 (plain)
  1. domain = example.com
  2. gitrepo = site/content
  3. plugins = goodstuff \
  4. plugins-off =
  5. admins =
  6. IKIWIKI_CONFIG_OPTIONS = \
  7. --wikiname 'SampleWiki' \
  8. --adminemail 'webmaster@$(domain)' \
  9. $(patsubst %,--adminuser '%',$(admins)) \
  10. $(patsubst %,--plugin %,$(plugins)) \
  11. $(patsubst %,--disable-plugin %,$(plugins-off)) \
  12. # collaboration/aggregation
  13. IKIWIKI_CONFIG_OPTIONS += \
  14. --allowrss \
  15. --allowatom \
  16. # styling
  17. IKIWIKI_CONFIG_OPTIONS += \
  18. # CGI
  19. IKIWIKI_CONFIG_OPTIONS += \
  20. # VCS
  21. IKIWIKI_CONFIG_OPTIONS += \