Created
March 24, 2010 20:34
-
-
Save kirkegaard/342753 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [production] | |
| ; PHP Settings | |
| phpSettings.display_startup_errors = 0 | |
| phpSettings.display_errors = 0 | |
| phpSettings.date.timezone = "Europe/Copenhagen" | |
| resources.locale = "da_DK" | |
| ; Include Paths | |
| includePaths.library = APPLICATION_PATH "/../library" | |
| ; Bootstrap File | |
| bootstrap.path = APPLICATION_PATH "/Bootstrap.php" | |
| bootstrap.class = "Bootstrap" | |
| ; Default Application Resource Namespace | |
| appnamespace = "Kid" | |
| ; Autoloader Namespace Settings | |
| autoloaderNamespaces[] = "Doctrine" | |
| autoloaderNamespaces[] = "App_" | |
| ; Autoload our resources | |
| pluginPaths.App_Resource = "App/Resource" | |
| ; FrontController Resource Settings | |
| resources.frontController.defaultController = "index" | |
| resources.frontController.defaultAction = "index" | |
| resources.frontController.defaultModule = "frontend" | |
| resources.frontController.prefixDefaultModule = true | |
| resources.frontController.moduleDirectory = APPLICATION_PATH "/modules" | |
| resources.frontController.params.displayExceptions = 0 | |
| ; Module Settings | |
| resources.modules[] = | |
| ; View HTML Specific Settings | |
| resources.view[] = | |
| resources.view.encoding = "UTF-8" | |
| resources.view.helperPath.App_View_Helper = APPLICATION_PATH "/../library/App/View/Helper/" | |
| resources.view.helperPathPrefix.App_View_Helper = "App_View_Helper" | |
| resources.view.helperPath.Frontend_View_Helper = APPLICATION_PATH "/modules/frontend/views/helpers" | |
| resources.view.helperPathPrefix.Frontend_View_Helper = "Frontend_View_Helper" | |
| resources.view.helperPath.Backend_View_Helper = APPLICATION_PATH "/modules/backend/views/helpers" | |
| resources.view.helperPathPrefix.Backend_View_Helper = "Backend_View_Helper" | |
| ; Default Layout Resource Settings | |
| resources.layout.layout = "default" | |
| resources.layout.layoutPath = APPLICATION_PATH "/modules/frontend/views/layouts" | |
| resources.layout.pluginClass = "App_Controller_Plugin_LayoutSwitcher" | |
| resources.layouthelpers.doctype = "XHTML1_STRICT" | |
| resources.layouthelpers.title = "1.kid" | |
| resources.layouthelpers.title_separator = " &emdash; " | |
| ; Session Resource Settings | |
| resources.session.name = "ONE_KID" | |
| resources.session.save_path = APPLICATION_PATH "/../tmp/session" | |
| resources.session.gc_maxlifetime = 900 | |
| resources.session.use_only_cookies = true | |
| resources.session.cookie_httponly = true | |
| resources.session.remember_me_seconds = 900 | |
| ; Doctrine Resource Settings | |
| doctrine.dsn = "mysql://root:root@127.0.0.1/1kid_dev" | |
| doctrine.data_fixtures_path = APPLICATION_PATH "/configs/doctrine/fixtures" | |
| doctrine.models_path = APPLICATION_PATH "/models" | |
| doctrine.migrations_path = APPLICATION_PATH "/configs/doctrine/migrations" | |
| doctrine.sql_path = APPLICATION_PATH "/configs/doctrine/sql" | |
| doctrine.yaml_schema_path = APPLICATION_PATH "/configs/doctrine/schema" | |
| ; Doctrine options | |
| doctrine.generate_models_options.pearStyle = true | |
| doctrine.generate_models_options.baseClassPrefix = "Base_" | |
| doctrine.generate_models_options.baseClassesDirectory = null | |
| doctrine.generate_models_options.baseClassPrefixFiles = false | |
| doctrine.generate_models_options.classPrefix = "Model_" | |
| doctrine.generate_models_options.classPrefixFiles = false | |
| doctrine.generate_models_options.generateBaseClasses = true | |
| doctrine.generate_models_options.generateTableClasses = true | |
| doctrine.generate_models_options.packagesPrefix = "Package" | |
| doctrine.generate_models_options.packagesPath = APPLICATION_PATH "/models" | |
| doctrine.generate_models_options.packagesFolderName = "packages" | |
| doctrine.generate_models_options.phpDocPackage = 1kid | |
| doctrine.generate_models_options.phpDocSubpackage = Models | |
| doctrine.generate_models_options.phpDocName = Christian Kirkegaard | |
| doctrine.generate_models_options.phpDocEmail = christian@art-box.dk | |
| [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 | |
| resources.view.strictVars = true |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment