config.php 657 B

12345678910111213141516171819202122
  1. <?php
  2. return new \Phalcon\Config(array(
  3. 'database' => array(
  4. 'adapter' => 'Mysql',
  5. 'host' => 'tfb-database',
  6. 'username' => 'benchmarkdbuser',
  7. 'password' => 'benchmarkdbpass',
  8. 'name' => 'hello_world',
  9. 'persistent' => true,
  10. ),
  11. 'mongodb' => array(
  12. 'url' => 'mongodb://tfb-database:27017',
  13. 'db' => 'hello_world'
  14. ),
  15. 'application' => array(
  16. 'controllersDir' => APP_PATH . '/app/controllers/',
  17. 'modelsDir' => APP_PATH . '/app/models/',
  18. 'viewsDir' => APP_PATH . '/app/views/',
  19. 'baseUri' => '/',
  20. )
  21. ));