public
Description: An attempt at turning the blogging app that runs tomayko.com into a general purpose blogging system. No longer actively maintained.
Homepage:
Clone URL: git://github.com/rtomayko/wink.git
cypher (author)
Sun Nov 02 12:45:06 -0800 2008
commit  f8629f2810dffec26990a45101e5c1f03b5d5594
tree    a9472d1d672aaaffdc78419088343d0b048b9d81
parent  aa361b05631f19429d5fbcd2758798d5ea652295 parent  f5fe1dc46b6e3a183d1f8939b5bed51534bd1b04
wink / wink.conf.example
100644 61 lines (43 sloc) 1.845 kb
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
57
58
59
60
61
# Database Configuration ====================================================
 
Wink::Schema.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]
 
## A regular expression that matches URLs to your site's content. Used
## to detect bookmarks and external content referencing the current site.
#set :delicious_filter, nil
 
## 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