]> git.openstreetmap.org Git - rails.git/blob - config/database.yml
Merge 7922:8377 from trunk.
[rails.git] / config / database.yml
1 # MySQL (default setup).  Versions 4.1 and 5.0 are recommended.
2 #
3 # Install the MySQL driver:
4 #   gem install mysql
5 # On MacOS X:
6 #   gem install mysql -- --include=/usr/local/lib
7 # On Windows:
8 #   There is no gem for Windows.  Install mysql.so from RubyForApache.
9 #   http://rubyforge.org/projects/rubyforapache
10 #
11 # And be sure to use new-style password hashing:
12 #   http://dev.mysql.com/doc/refman/5.0/en/old-client.html
13 development:
14   adapter: mysql
15   database: osm
16   user: root  
17   host: localhost
18
19 # Warning: The database defined as 'test' will be erased and
20 # re-generated from your development database when you run 'rake'.
21 # Do not set this db to the same as development or production.
22 test:
23   adapter: mysql
24   database: osm_test
25   username: root
26   password:
27   host: localhost
28
29 production:
30   adapter: mysql
31   database: openstreetmap
32   username: openstreetmap
33   password: openstreetmap
34   host: db.openstreetmap.org
35