git » wikiri » master » tree

[master] / config.py.sample

#coding: utf8

# This is the sample configuration file for a blitiri blog engine.
# If you omit a variable, the default will be used.
#
# If you prefer, you can set the values directly inside blitiri.cgi and not
# have a configuration file.

# Directory where entries are stored
data_path = "data/"

# Path where templates are stored. Use an empty string for the built-in
# default templates. If they're not found, the built-in ones will be used.
templates_path = "templates/"

# URL to the wiki, including the name. Can be a full URL or just the path.
wiki_url = "/wiki/wikiri.cgi"

# Style sheet (CSS) URL. Can be relative or absolute. To use the built-in
# default, set it to wiki_url + "/style".
css_url = wiki_url + "/style"

# Wiki title.
title = "I like wikis"

# History backend. Can be one of:
#  - "none" for no history
#  - "git" to use git (needs git and the data path to be a repository)
#  - "darcs" to use darcs (needs darcs and the data path to be a repository)
#  - "auto" to select automatically (looks if the data path is a repository)
history = "auto"