config.php 586 B

123456789101112131415161718
  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' => __DIR__ . '/../../app/controllers/',
  12. 'modelsDir' => __DIR__ . '/../../app/models/',
  13. 'viewsDir' => __DIR__ . '/../../app/views/',
  14. 'routes' => __DIR__ . '/../../app/config/routes.php',
  15. 'baseUri' => '/',
  16. )
  17. ));