db.php 340 B

1234567891011121314
  1. <?php
  2. /**
  3. * The development database settings. These get merged with the global settings.
  4. */
  5. return array(
  6. 'default' => array(
  7. 'connection' => array(
  8. 'dsn' => 'mysql:host=192.168.100.102;dbname=hello_world',
  9. 'username' => 'benchmarkdbuser',
  10. 'password' => 'benchmarkdbpass',
  11. ),
  12. ),
  13. );