2 # Simple ikiwiki setup.
4 # This setup file causes ikiwiki to create a wiki, check it into revision
5 # control, generate a setup file for the new wiki, and set everything up.
7 # Just run: ikiwiki -setup /etc/ikiwiki/simple.setup
9 # By default, it asks two questions, and confines itself to the user's home
10 # directory. You can edit it to change what it asks questions about, or to
11 # modify the values to use site-specific settings.
13 require IkiWiki::Setup::Automator;
15 our $wikiname=IkiWiki::Setup::Automator::ask(
16 "What will the wiki be named?", "wiki");
17 our $rcs=IkiWiki::Setup::Automator::ask(
18 "What revision control system to use?", "git");
19 our $hostname=`hostname -f`; chomp $hostname;
21 IkiWiki::Setup::Automator::import(
22 wikiname => $wikiname,
24 srcdir => "$ENV{HOME}/$wikiname",
25 destdir => "$ENV{HOME}/public_html/$wikiname",
26 repository => "$ENV{HOME}/$wikiname.$rcs",
27 setupfile => "$ENV{HOME}/$wikiname.setup",
28 url => "http://$hostname/~$ENV{USER}/$wikiname",
29 cgiurl => "http://$hostname/~$ENV{USER}/$wikiname/ikiwiki.cgi",
30 cgi_wrapper => "$ENV{HOME}/public_html/$wikiname/ikiwiki.cgi",
31 adminemail => "$ENV{USER}\@$hostname",
32 add_plugins => [qw{ goodstuff }],
33 disable_plugins => [qw{ }],
34 libdir => "$ENV{HOME}/.ikiwiki",
38 prefix_directives => 1,