-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathwink.conf.example
56 lines (40 loc) · 1.63 KB
/
wink.conf.example
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# Database Configuration ====================================================
Database.configure \
:adapter => 'mysql',
:host => 'localhost',
:username => 'root',
:password => '',
:database => 'wink_development'
# Wink Configuration ========================================================
# The site's root URL. Note: the trailing slash should be
# omitted when setting this option.
set :url, 'http://localhost:4567'
## The full name of the site's author.
set :author, 'Anonymous Coward'
## Administartive credentials used to log into permissioned areas
set :username, 'admin'
set :password, 'password'
## The site's title. Defaults to the author's name if not set.
#set :title, 'Anonymous Rants'
## Title of the page with writings
set :writings, 'Writings'
## Title of the page with del.icio.us links
set :linkings, 'Linkings'
## Start date for archives + copyright notice
set :begin_date, 2008
## List of filters to apply to comments (make sure the :sanitize filter
## is included).
#set :comment_filters, [:markdown, :sanitize]
## Where to write log messages (defaults to STDERR)
#set :log_stream, File.open('development.log', 'ab')
## This site's Akismet key (should pair with the url option).
#set :akismet_key, 'd3cafbad'
## The del.icio.us username/password used for bookmark synchronization.
#set :delicious, %w[username password]
## URL Mapping overrides. If you don't like /writings or any of the others, override them here. Be sure they end in /
#set :writings_url, "/writings/"
#set :linkings_url, "/linkings/"
#set :archive_url, "/circa/"
#set :tag_url, "/topics/"
#set :drafts_url, "/drafts/"
# vim: ft=ruby