]> git.openstreetmap.org Git - rails.git/blob - config/database.yml
Doing a resync from mainline 8633:10895. There was one simple to resolve conflict...
[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: openstreetmap
16   #username: openstreetmap
17   #password: openstreetmap
18   database: osm_test
19   username: osm_test
20   password: osm_test
21   host: localhost
22
23 # Warning: The database defined as 'test' will be erased and
24 # re-generated from your development database when you run 'rake'.
25 # Do not set this db to the same as development or production.
26 test:
27   adapter: mysql
28   database: osm_test
29   username: osm_test
30   password: osm_test
31   host: localhost
32
33 production:
34   adapter: mysql
35   database: osm
36   username: osm
37   password: osm
38   host: localhost
39