diff --git a/app/config/config.ini b/app/config/config.ini deleted file mode 100755 index a0ca7e0..0000000 --- a/app/config/config.ini +++ /dev/null @@ -1,12 +0,0 @@ -[database] -adapter = Postgresql -host = "localhost" -username = "postgres" -password = "5cZw3rPC" -dbname = "analytics" - -[phalcon] -controllersDir = "../app/library/App/Controllers/" -modelsDir = "../app/library/App/Model/" -viewsDir = "../app/views/" -baseUri = "/store/" diff --git a/app/config/config.php b/app/config/config.php new file mode 100644 index 0000000..b34bae3 --- /dev/null +++ b/app/config/config.php @@ -0,0 +1,22 @@ + [ + + // 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/" + ] + ]; +?> -- libgit2 0.21.4