Blame view

app/config/config.php 590 Bytes
e4b2f3a9   Alex Savenko   config
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
  <?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/"
          ]
      ];
  ?>