virtualfunction / typeface

An open source Ruby on Rails 'content generation' orientated CMS / publishing framework

This URL has Read+Write access

Jase (author)
Fri Aug 29 02:42:14 -0700 2008
commit  eeca4aab9ee96fd2c546cdc9a4425dcd2e6b8ba6
tree    3ca6b591ed59271cac33bb504b563da4a480979c
parent  6b60ec70949c8e1473f47052dca7cb730711deb4
typeface / config / example_database.yml
100644 29 lines (24 sloc) 0.782 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
# MySQL (default setup). Versions 4.1 and 5.0 are recommended.
#
# Install the MySQL driver:
# gem install mysql
# On MacOS X:
# gem install mysql -- --include=/usr/local/lib
# On Windows:
# There is no gem for Windows. Install mysql.so from RubyForApache.
# http://rubyforge.org/projects/rubyforapache
#
# And be sure to use new-style password hashing:
# http://dev.mysql.com/doc/refman/5.0/en/old-client.html
 
development:
  adapter: sqlite3
  dbfile: db/development.db
 
# Warning: The database defined as 'test' will be erased and
# re-generated from your development database when you run 'rake'.
# Do not set this db to the same as development or production.
test:
  adapter: sqlite3
  dbfile: db/test.db
 
production:
  adapter: sqlite3
  dbfile: db/production.db