public
Description: A small blog + wiki engine built on Sinatra + Stone
Homepage:
Clone URL: git://github.com/bomberstudios/bliki.git
bliki / config.sample.yml
100644 56 lines (51 sloc) 1.367 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
# bliki configuration
author_name: Your Full Name
# Shall we protect the admin with user and password?
use_auth: true
# Username for admin
username: username
# Password for admin. To generate, run this Ruby code:
# require 'digest/sha1'
# p Digest::SHA1.hexdigest('password')
# By default, the password is 'password'
password: 5baa61e4c9b93f3f0682250b6cf8331b7ee68fd8
# Use Disqus comments (needs an account on http://disqus.com)
use_comments: true
# The short name of your site in disqus
disqus_id: your_disqus_id
# Theme
theme: default
 
development:
  name: Your Blog Title
  title: Your Blog Subtitle
  base_url: http://0.0.0.0:4567
  # number of posts in home and feed
  limit: 3
  # If you use Reinvigorate, put your tracking code here
  reinvigorate_code: xxxxx-xxxxxxxxxx
  # Display comments
  use_comments: false
  # Ping pingomatic.com when posting on the blog
  # Wiki pages never send pings
  ping: false
 
production:
  name: Your Blog Title
  title: Your Blog Subtitle
  base_url: http://yourdomain.com
  limit: 5
  reinvigorate_code: xxxxx-xxxxxxxxxx
  use_comments: true
  ping: true
 
test:
  name: Your Blog Title
  title: Your Blog Subtitle
  base_url: http://yourdomain.com
  # Do not use auth for testing
  use_auth: false
  limit: 2
  use_comments: false
  ping: false
 
deploy:
  hostname: yourhost.com
  folder: www/yoursite
  username: username