empty app rails 1.99.0 (aka Rails 2.0 preview)
[rails-skeleton.git] / config / database.yml
blob90a49ec7e151922dc19686c5754301c8610fe44e
1 # MySQL (default setup).  Versions 4.1 and 5.0 are recommended.
3 # Install the MySQL driver:
4 #   gem install mysql
5 # On MacOS X:
6 #   sudo gem install mysql -- --with-mysql-dir=/usr/local/mysql
7 # On Windows:
8 #   gem install mysql
9 #       Choose the win32 build.
10 #       Install MySQL and put its /bin directory on your path.
12 # And be sure to use new-style password hashing:
13 #   http://dev.mysql.com/doc/refman/5.0/en/old-client.html
14 development:
15   adapter: mysql
16   encoding: utf8
17   database: empty_app_development
18   username: root
19   password:
20   socket: /var/run/mysqld/mysqld.sock
22 # Warning: The database defined as 'test' will be erased and
23 # re-generated from your development database when you run 'rake'.
24 # Do not set this db to the same as development or production.
25 test:
26   adapter: mysql
27   encoding: utf8
28   database: empty_app_test
29   username: root
30   password:
31   socket: /var/run/mysqld/mysqld.sock
33 production:
34   adapter: mysql
35   encoding: utf8
36   database: empty_app_production
37   username: root
38   password: 
39   socket: /var/run/mysqld/mysqld.sock