bsag / tracks

Tracks is a GTD(TM) web application, built with Ruby on Rails

This URL has Read+Write access

lrbalt (author)
Sun Jul 05 02:34:19 -0700 2009
commit  2497ea9fea1a7528adb2b41f450f6dfb78a47a8c
tree    d697e65561f07ee3e05c636e95f642160b4b951f
parent  8a0da54808b4abdc158d67b0bdd74e201aa1571f
tracks / config / site.yml.tmpl
100644 43 lines (30 sloc) 1.306 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
# This is the 'salt' to add to the password before it is encrypted
# You need to change this to something unique for yourself
salt: "change-me"
 
 
# Uncomment ldap or open_id if you want to use those authentication schemes.
# If you choose ldap, see the additional configuration options further down.
authentication_schemes:
  - "database"
  # - "ldap"
  # - "open_id"
 
 
# You''ll probably want to change this to the time zone of the computer where Tracks is running
# run rake time:zones:local have Rails suggest time zone names on your system
time_zone: "UTC"
 
 
# setting this to true will make the cookies only available over HTTPS
secure_cookies: false
 
 
# Uncomment if you want to dispatch todos that come from email based on the To: address
# rather than the From: address.
# email_dispatch: 'to'
 
 
# Set this to the subdirectory you're hosting tracks in and uncomment if applicable
# NOTE: you will also need to set up your web server to deal with the relative
# URL. Mongrel, for example, has a --prefix option.
# subdir: "/tracks"
 
# Set to true to allow anyone to sign up for a username.
open_signups: false
 
# Only needed if ldap is included in authentication_schemes
# ldap:
# library: 'net/ldap'
# servers:
# - 'localhost'
# use_ssl: false
# login_format: 'cn=%s,dc=example,dc=com'