config.php 501 B

1234567891011121314151617
  1. <?php
  2. return new \Phalcon\Config(array(
  3. 'database' => array(
  4. 'adapter' => 'Mysql',
  5. 'host' => 'localhost',
  6. 'username' => 'benchmarkdbuser',
  7. 'password' => 'benchmarkdbpass',
  8. 'name' => 'hello_world',
  9. ),
  10. 'application' => array(
  11. 'controllersDir' => APP_PATH . '/app/controllers/',
  12. 'modelsDir' => APP_PATH . '/app/models/',
  13. 'viewsDir' => APP_PATH . '/app/views/',
  14. 'baseUri' => '/',
  15. )
  16. ));