You are viewing a plain text version of this content. The canonical link for it is here.
Posted to olio-commits@incubator.apache.org by sh...@apache.org on 2009/03/17 23:53:34 UTC

svn commit: r755448 - /incubator/olio/webapp/rails/trunk/config/database.yml.template

Author: shanti
Date: Tue Mar 17 23:53:34 2009
New Revision: 755448

URL: http://svn.apache.org/viewvc?rev=755448&view=rev
Log:
Changed all database types to mysql, fixed username, password as olio and added hostname entry.

Modified:
    incubator/olio/webapp/rails/trunk/config/database.yml.template

Modified: incubator/olio/webapp/rails/trunk/config/database.yml.template
URL: http://svn.apache.org/viewvc/incubator/olio/webapp/rails/trunk/config/database.yml.template?rev=755448&r1=755447&r2=755448&view=diff
==============================================================================
--- incubator/olio/webapp/rails/trunk/config/database.yml.template (original)
+++ incubator/olio/webapp/rails/trunk/config/database.yml.template Tue Mar 17 23:53:34 2009
@@ -12,20 +12,25 @@
 # And be sure to use new-style password hashing:
 #   http://dev.mysql.com/doc/refman/5.0/en/old-client.html
 development:
-  adapter: sqlite3
-  database: db/development.sqlite3
-  timeout: 5000
+  adapter: mysql
+  database: olio
+  username: olio
+  password: olio
+  hostname: localhost
 
 # 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
-  database: db/test.sqlite3
-  timeout: 5000
+  adapter: mysql
+  database: olio-test
+  username: olio
+  password: olio
+  hostname: localhost
 
 production:
   adapter: mysql
-  database: perf_production
-  username: web20
-  password: web20
+  database: olio
+  username: olio
+  password: olio
+  hostname: localhost