Adding the sqlite3 database.yml
[faqr.git] / config / database.yml.template
blob786a91411c6e5c3a5f3b855302fbd27e38c75b3f
1 # # SQLite version 3.x
2 # #   gem install sqlite3-ruby (not necessary on OS X Leopard)
3 # development:
4 #   adapter: sqlite3
5 #   database: db/development.sqlite3
6 #   timeout: 5000
7
8 # # Warning: The database defined as 'test' will be erased and
9 # # re-generated from your development database when you run 'rake'.
10 # # Do not set this db to the same as development or production.
11 # test:
12 #   adapter: sqlite3
13 #   database: db/test.sqlite3
14 #   timeout: 5000
15
16 # production:
17 #   adapter: sqlite3
18 #   database: db/production.sqlite3
19 #   timeout: 5000
21 development:
22         adapter: mysql
23         database: faqr_development
24         username: root
25         password:
26         socket: /tmp/mysql.sock
28 test:
29         adapter: mysql
30         database: faqr_test
31         username: root
32         password:
33         socket: /tmp/mysql.sock
34