]> sipb.mit.edu Git - ikiwiki.git/blob - simple.setup
Merge branch 'master' into autoconfig
[ikiwiki.git] / simple.setup
1 #!/usr/bin/perl
2 # Simple ikiwiki setup.
3
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.
6 #
7 # Just run: ikiwiki -setup /etc/ikiwiki/simple.setup
8 #
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.
12
13 require IkiWiki::Setup::Automator;
14
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;
20
21 IkiWiki::Setup::Automator::import(
22         wikiname => $wikiname,
23         rcs => $rcs,
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",
35         rss => 1,
36         atom => 1,
37         syslog => 1,
38         prefix_directives => 1,
39         hardlink => 1,
40 );