diff options
Diffstat (limited to 'application/configs')
| -rw-r--r-- | application/configs/application.ini | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/application/configs/application.ini b/application/configs/application.ini new file mode 100644 index 0000000..6970da3 --- /dev/null +++ b/application/configs/application.ini @@ -0,0 +1,26 @@ +[production] +phpSettings.display_startup_errors = 0 +phpSettings.display_errors = 0 +includePaths.library = APPLICATION_PATH "/../library" +bootstrap.path = APPLICATION_PATH "/Bootstrap.php" +bootstrap.class = "Bootstrap" +appnamespace = "Application" +resources.frontController.controllerDirectory = APPLICATION_PATH "/controllers" +resources.frontController.params.displayExceptions = 0 +resources.db.adapter = PDO_MYSQL +resources.db.params.host = localhost +resources.db.params.username = root +resources.db.params.password = lsfks +resources.db.params.dbname = pbs +resources.db.isDefaultTableAdapter = true + +[staging : production] + +[testing : production] +phpSettings.display_startup_errors = 1 +phpSettings.display_errors = 1 + +[development : production] +phpSettings.display_startup_errors = 1 +phpSettings.display_errors = 1 +resources.frontController.params.displayExceptions = 1 |
