config.php 590 Bytes
<?php
    return [
        'database' => [

            // Change to your own configuration
            'adapter' => 'Postgresql',
            'host' => 'localhost',
            'username' => 'postgres',
            'password' => '5cZw3rPC',
            'dbname' => 'analytics',
        ],

        'phalcon' => [

            // Change to your own configuration
            'controllersDir' => "../app/library/App/Controllers/",
            'modelsDir' => "../app/library/App/Controllers/",
            'viewsDir' => "../app/views/",
            'baseUri' => "/store/"
        ]
    ];
?>