aboutsummaryrefslogtreecommitdiff
path: root/_templates/ikiwiki/ikiwiki.setup
blob: 9c0c679d5da6977eb5414e9eac0f679528700863 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#!/usr/bin/perl
# Configuration file for ikiwiki.
# Passing this to ikiwiki --setup will make ikiwiki generate wrappers and
# build the wiki.
#
# Remember to re-run ikiwiki --setup any time you edit this file.

use IkiWiki::Setup::Standard {
  url => "http://boaspraticas.example.org",

  # Be sure to customise these..
  srcdir  => "data",
  destdir => "output",

  # Git stuff.
  rcs        => "git",
  historyurl => "https://github.com/user/blogatico/commits/master/[[file]]",

  # See https://ikiwiki.info/tips/laptop_wiki_with_git/
  gitorigin_branch => '',

  # Default to generating rss feeds for pages with feeds?
  rss => 1,

  # Include discussion links on all pages?
  discussion => 0,

  # To add plugins, list them here.
  add_plugins => [qw{goodstuff sidebar}],

  # If you want to disable any of the default plugins, list them here.
  disable_plugins => [qw{openid editpage}],
}