Guest User

Untitled

a guest
Apr 22nd, 2016
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 20.14 KB | None | 0 0
  1. [live]
  2. ;## php.ini directive assert.active, see php.net/assert_options
  3. ;## @var int 0/1
  4. assert.active = 0
  5.  
  6. phpSettings.session.cache_limiter = false
  7. phpSettings.date.timezone = "%timezone%"
  8. phpSettings.display_startup_errors = 0
  9. phpSettings.display_errors = 0
  10. bootstrap.path = APPLICATION_PATH "/vendor/Bootstrap.php"
  11. bootstrap.class = "Bootstrap"
  12. appnamespace = ""
  13. bootstrap.config_host = "%config_host%"
  14. bootstrap.iso="%country.iso%"
  15.  
  16. ;## Custom path for application resources
  17. pluginPaths.Rocket_Application_Resource_ = APPLICATION_PATH "/../../vendor/Rocket/Application/Resource"
  18. pluginPaths.Bob_Application_Resource_ = APPLICATION_PATH "/vendor/Bob/Application/Resource"
  19.  
  20. ;# NAVIGATION
  21. resources.navigation.pagesConfig = "navigation.xml"
  22. resources.navigation.cache = "default"
  23.  
  24. ;## LOG
  25. resources.log.ums.writerName = "Stream"
  26. resources.log.ums.writerParams.stream = "ums.log"
  27. resources.log.ums.filterName = "Message"
  28. resources.log.ums.filterParams.regexp = "/^UMS/"
  29.  
  30. resources.log.sharedstock.writerName = "Stream"
  31. resources.log.sharedstock.writerParams.stream = "shared-stock.log"
  32. resources.log.sharedstock.filterName = "Message"
  33. resources.log.sharedstock.filterParams.regexp = "/^SHARED_STOCK/"
  34.  
  35. resources.log.erp.writerName = "Stream"
  36. resources.log.erp.writerParams.stream = "erp.log"
  37. resources.log.erp.filterName = "Message"
  38. resources.log.erp.filterParams.regexp = "/^ERP/"
  39.  
  40. resources.log.adyen.writerName = "Stream"
  41. resources.log.adyen.writerParams.stream = "payment_adyen.log"
  42. resources.log.adyen.filterName = "Message"
  43. resources.log.adyen.filterParams.regexp = "/^ADYEN/"
  44.  
  45. resources.log.ratings.writerName = "Stream"
  46. resources.log.ratings.writerParams.stream = "ratings.log"
  47. resources.log.ratings.filterName = "Message"
  48. resources.log.ratings.filterParams.regexp = "/^RATINGS/"
  49.  
  50. resources.log.solr.writerName = "Stream"
  51. resources.log.solr.writerParams.stream = "solr-posts.log"
  52. resources.log.solr.filterName = "Message"
  53. resources.log.solr.filterParams.regexp = "/^SOLR/"
  54. resources.log.solr.active = false
  55.  
  56. resources.log.coupons.writerName = "Stream"
  57. resources.log.coupons.writerParams.stream = "coupons.log"
  58. resources.log.coupons.filterName = "Message"
  59. resources.log.coupons.filterParams.regexp = "/^COUPONS/"
  60.  
  61. resources.log.mail.writerName = "Stream"
  62. resources.log.mail.writerParams.stream = "mail_usage.log"
  63. resources.log.mail.filterName = "Message"
  64. resources.log.mail.filterParams.regexp = "/^MAIL_USAGE/"
  65.  
  66. resources.log.exception.writerName = "Stream"
  67. resources.log.exception.writerParams.stream = "exception_critical.log"
  68. resources.log.exception.filterName = "Priority"
  69. resources.log.exception.filterParams.priority = 0
  70.  
  71. resources.log.conny.writerName = "Stream"
  72. resources.log.conny.writerParams.stream = "conny-webservice.log"
  73. resources.log.conny.filterName = "Message"
  74. resources.log.conny.filterParams.regexp = "/^CONNY_WEBSERVICE/"
  75.  
  76. resources.log.recommendation.writerName = "Stream"
  77. resources.log.recommendation.writerParams.stream = "prudsys.log"
  78. resources.log.recommendation.filterName = "Message"
  79. resources.log.recommendation.filterParams.regexp = "/^RECOMMENDATION/"
  80.  
  81. resources.log.default.writerName = "Stream"
  82. resources.log.default.writerParams.stream = "bob-application.log"
  83. resources.log.default.filterName = "Message"
  84. resources.log.default.filterParams.regexp = "/^(?!UMS)(?!SHARED_STOCK)(?!ADYEN)(?!RATINGS)(?!SOLR)(?!COUPONS)(?!MAIL_USAGE)(?!CONNY_WEBSERVICE)(?!RECOMMENDATION)(?!ERP)/"
  85.  
  86. ;## LOCALE
  87. resources.locale.default = "%locale%"
  88. resources.locale.force = true
  89. resources.locale.cache = 'db'
  90.  
  91. ;## TRANSLATION ##
  92. resources.translate.adapter = array
  93. resources.translate.route.de = en ; fallback
  94. resources.translate.disableNotices = 1
  95. resources.translate.contentPaths.vendor = APPLICATION_PATH "/vendor/configs/languages";
  96. resources.translate.scan = "directory" ;// Zend_Translate::LOCALE_DIRECTORY;
  97. resources.translate.cache = default ;// see cache manager cache named default
  98.  
  99. ;## FRONT_CONTROLLER ##
  100. resources.frontController.controllerDirectory = APPLICATION_PATH "/controllers"
  101. resources.frontController.params.displayExceptions = 0
  102. resources.frontController.moduleDirectory.vendor = APPLICATION_PATH "/vendor/modules"
  103. resources.frontController.actionhelperpaths.Rocket_Controller_Action_Helper_ = APPLICATION_PATH "/../../vendor/Rocket/Controller/Action/Helper"
  104. resources.frontController.plugins.Rocket_Controller_Plugin_ModuleAutoloader.class = "Rocket_Controller_Plugin_ModuleAutoloader"
  105. resources.frontController.plugins.Rocket_Controller_Plugin_ModuleAutoloader.stackIndex = 10000 ; !!! ATTENTION THIS PLUGIN MUST BE LAST
  106. resources.frontController.plugins.Bob_Controller_Plugin_ApplicationLocker = "Bob_Controller_Plugin_ApplicationLocker"
  107. resources.frontController.plugins.Bob_Controller_Plugin_Benchmark = "Bob_Controller_Plugin_Benchmark"
  108. resources.frontController.throwexceptions = 1
  109.  
  110. ;## CACHE ##
  111. resources.cachemanager.default.frontend.name = "Core"
  112. resources.cachemanager.default.frontend.options.lifetime = 3600
  113. resources.cachemanager.default.frontend.options.automatic_serialization = true
  114. resources.cachemanager.default.frontend.options.cache_id_prefix = "%db.params.username%"
  115. resources.cachemanager.default.backend.name = "File"
  116. resources.cachemanager.default.backend.options.cache_dir = "%cachedir%/cache"
  117. resources.cachemanager.default.backend.options.cache_file_perm = 0666;
  118.  
  119. resources.cachemanager.db.frontend.name = "Core"
  120. resources.cachemanager.db.frontend.options.lifetime = 3600
  121. resources.cachemanager.db.frontend.options.automatic_serialization = true
  122. resources.cachemanager.db.frontend.options.cache_id_prefix = "%db.params.username%"
  123. resources.cachemanager.db.backend.name = "File"
  124. resources.cachemanager.db.backend.options.cache_dir = "%cachedir%/cache"
  125. resources.cachemanager.db.backend.options.cache_file_perm = 0666;
  126.  
  127. ;resources.cachemanager.otrs.frontend.name = "Core"
  128. ;resources.cachemanager.otrs.frontend.options.lifetime = 600
  129. ;resources.cachemanager.otrs.frontend.options.automatic_serialization = true
  130. ;resources.cachemanager.otrs.frontend.options.cache_id_prefix = APPLICATION_ENV
  131. ;resources.cachemanager.otrs.backend.name = "File"
  132. ;resources.cachemanager.otrs.backend.options.cache_dir = APPLICATION_PATH "/../data/cache"
  133. ;resources.cachemanager.otrs.backend.options.cache_file_perm = 0666;
  134.  
  135. ;resources.cachemanager.dashboardCache.frontend.name = "Core"
  136. ;resources.cachemanager.dashboardCache.frontend.options.lifetime = 600
  137. ;resources.cachemanager.dashboardCache.frontend.options.automatic_serialization = true
  138. ;resources.cachemanager.dashboardCache.frontend.options.cache_id_prefix = APPLICATION_ENV
  139. ;resources.cachemanager.dashboardCache.backend.name = "File"
  140. ;resources.cachemanager.dashboardCache.backend.options.cache_dir = APPLICATION_PATH "/../data/cache"
  141. ;resources.cachemanager.dashboardCache.backend.options.cache_file_perm = 0666;
  142.  
  143. ;## DATABASE ##
  144. resources.multidb.defaultMetadataCache = "db"
  145.  
  146. resources.multidb.main.adapterNamespace = "Bob_Db_Adapter"
  147. resources.multidb.main.adapter = "Pdo_Mysql"
  148. resources.multidb.main.host = "%db.params.host%"
  149. resources.multidb.main.username = "%db.params.username%"
  150. resources.multidb.main.password = "%db.params.password%"
  151. resources.multidb.main.dbname = "%db.params.dbname%"
  152. resources.multidb.main.charset = utf8
  153. resources.multidb.main.default = true
  154. resources.multidb.main.driver_options.1001 = 1 ; means PDO::MYSQL_ATTR_LOCAL_INFILE
  155. resources.multidb.main.isBobDbAdapterReplication = true
  156.  
  157. resources.multidb.monitoring.adapterNamespace = "Bob_Db_Adapter"
  158. resources.multidb.monitoring.adapter = "Pdo_Mysql"
  159. resources.multidb.monitoring.host = "%db.params.host%"
  160. resources.multidb.monitoring.username = "%db.params.username%"
  161. resources.multidb.monitoring.password = "%db.params.password%"
  162. resources.multidb.monitoring.dbname = "%db.params.dbname%"
  163. resources.multidb.monitoring.charset = utf8
  164. resources.multidb.monitoring.default = false
  165. resources.multidb.monitoring.driver_options.1001 = 1 ; means PDO::MYSQL_ATTR_LOCAL_INFILE
  166. resources.multidb.monitoring.isBobDbAdapterReplication = false;
  167.  
  168. ;## ERP ##
  169. erp.enabled = false
  170.  
  171. resources.multidb.erp-nav.adapterNamespace = "Rocket_Db_Adapter"
  172. resources.multidb.erp-nav.adapter = "Pdo_Mssql"
  173. resources.multidb.erp-nav.host = "%erpdb.params.host%"
  174. resources.multidb.erp-nav.username = "%erpdb.params.username%"
  175. resources.multidb.erp-nav.password = "%erpdb.params.password%"
  176. resources.multidb.erp-nav.dbname = "%erpdb.params.dbname%"
  177. resources.multidb.erp-nav.pdoType = "dblib"
  178. resources.multidb.erp-nav.charset = utf8
  179. resources.multidb.erp-nav.isDefaultTableAdapter = false
  180.  
  181. erp.encoding = "ISO-8859-9"
  182. erp.system.canUpdateStock = false
  183. erp.timezone = "Etc/UCT"
  184.  
  185. erp.connection.factory = "Erp_Model_Connection_Navision_Factories_MixedFactory"
  186.  
  187. ;## Possible Values brand, category, itemCategoryCode, productGroupCode, null ##
  188. erp.connection.itemCategoryCode = "null"
  189. erp.connection.productGroupCode = "null"
  190.  
  191. erp.queue.host = "%erp.queue.host%"
  192. erp.queue.port = "%erp.queue.port%"
  193. erp.queue.username = "%erp.queue.username%"
  194. erp.queue.password = "%erp.queue.password%"
  195.  
  196. erp.pet.deeplink = "%erp.pet.deeplink%"
  197.  
  198. ;## VIEW ##
  199. resources.view.encoding = "UTF-8"
  200. resources.view.doctype = "XHTML1_TRANSITIONAL"
  201. resources.view.useStreamWrapper = true
  202. resources.view.helperPath.Bob_View_Helper_.vendor = APPLICATION_PATH "/vendor/Bob/View/Helper"
  203. resources.view.escape = "Bob_View_Helper_Escape::escape"
  204.  
  205. ;## LAYOUT ##
  206. resources.layout.layout = "layout"
  207. resources.layout.layoutPath = APPLICATION_PATH "/vendor/layouts/scripts"
  208.  
  209. ;## SESSION ##
  210. resources.session.use_only_cookies = true
  211. resources.session.save_path = "%cachedir%/session"
  212. resources.session.remember_me_seconds = 86400
  213.  
  214. ;## ADDITIONALS ##
  215. customer.password_hash_salt = "%password.hash.salt%"
  216. maintenance.checksum_repository_url = "http://checksums.rocket-internet.de/alice_bob/"
  217. maintenance.admin_email = "%admin.emailaddress%"
  218.  
  219. ; time in seconds to wait for alice and solr jobs to finish before starting deployment
  220. maintenance.time_to_wait_for_workers_on_deploy = 60
  221.  
  222. ;## ALICE ##
  223. ; URL needed for sitemap generation
  224. alice.hostname = "%alice.hostname%"
  225.  
  226.  
  227. ;## ANGI
  228. angi.domain = "%angi.domain%"
  229. angi.client_id = "5_lcm2fka5g1s0occ4so8o0k8c00wwgwok4cw4sk0w0g4ksks8k"
  230. angi.client_secret = "2chmvpvbdmtc4o0csk084sckcscc0wswk4ggcggwc8ggs0s0go"
  231.  
  232.  
  233. ; time in seconds to wait for other alice workers to finish their jobs before starting own job
  234. alice.time_to_wait_for_other_workers = 120
  235. ; force full worker to run despite there is a lock of another alice worker
  236. alice.force_full_import_despite_lock = false
  237. ; send mail to admin when full import was enforced
  238. alice.send_email_when_enforced = false
  239.  
  240. ; memory limit for worker on bob-side
  241. ; defaults: live = "6G", dev = "1G"
  242. ; @var string
  243. alice.memory_limit_worker = "%memory.limit.worker%"
  244.  
  245. ; time limit for worker on bob-side
  246. ; defaults: live = 30, dev = 120
  247. ; @var integer
  248. alice.time_limit_worker = "%time.limit.worker%"
  249.  
  250. ; time limit when alice healthcheck results get out-of-date in dashboard
  251. alice.healthcheck.result_expiration_time = 120
  252.  
  253. alice.translation_configcache_dir = "%translation_configcache_dir%"
  254. alice.translation_messages_dir = "%translation_messages_dir%"
  255.  
  256. ;## CATALOG ##
  257. catalog.image_base_url = "%catalog.image_base_url%"
  258. catalog.image_directory = "%catalog.image_directory%"
  259. catalog.tmp_directory = "%cachedir%/upload/tmp"
  260. catalog.import_directory = "%catalog.import_directory%"
  261. catalog.export_directory = "%catalog.export_directory%"
  262. catalog.feed_export_directory = "%catalog.data_feed_directory%"
  263. catalog.attributes_database_changes_dump_path = "%cachedir%/db-change-sets"
  264. catalog.sku_suffix = "%catalog.sku_suffix%"
  265. ;# project name and country (e.g. iconic (Australia)) stored in database on product creation (PET-463)
  266. catalog.project_name_country = "%catalog.project_name_country%"
  267.  
  268. ;# memory limit for catalog
  269. ;# default value: live = "4G", dev = "1G"
  270. catalog.memory_limit_catalog = "%memory.limit.catalog%"
  271.  
  272. ;# memory limit for exports
  273. ;# default value: live = "4G", dev = "1G"
  274. export.memory_limit_export = "%memory.limit.export%"
  275.  
  276. ;## CAMPAIGN ##
  277. campaign.image.l.width = 460
  278. campaign.image.l.height = 460
  279. campaign.image.s.width = 460
  280. campaign.image.s.height = 460
  281. campaign.image.r.width = 140
  282. campaign.image.r.height = 187
  283.  
  284. ;## ORDER ##
  285. ;provide your order number prefix here to overwrite default prefix
  286. ;orderprocessing.order_number_prefix = 'FUR'
  287.  
  288. ;## SOLR ##
  289. solr.host = "%solr.host%"
  290. solr.port = %solr.port%
  291. solr.core = "%solr.core%"
  292. solr.tomcat_user = "%solr.tomcat_user%"
  293. solr.tomcat_password = "%solr.tomcat_password%"
  294.  
  295. ; time in seconds to wait for other solr workers to finish their jobs before starting own job
  296. solr.time_to_wait_for_other_workers = 120
  297. ; force full worker to run despite there is a lock of another solr worker
  298. solr.force_full_import_despite_lock = false
  299. ; send mail to admin when full import was enforced
  300. solr.send_email_when_enforced = false
  301.  
  302. ;## PRUDSYS ##
  303. ; enables prudsys-support in general. Final setting has to done in bobs configuration-options for recommendation-module.
  304. prudsys.enabled = %prudsys%
  305. prudsys.host = "%prudsys.host%"
  306. prudsys.rde_id = "%prudsys.rde%"
  307. prudsys.username = "%prudsys.user%"
  308. prudsys.password = "%prudsys.pass%"
  309. prudsys.timeout = 5
  310. prudsys.connection_timeout = 2
  311. prudsys.log = 1
  312.  
  313. ;## TESTS ##
  314. phpunit.mocks.should_be_tested = 1
  315.  
  316. ; ## New Relic
  317. newrelic.active = 1
  318.  
  319. ;## CLI ##
  320. cli.memory_limit_cli = "%memory.limit.export%"
  321. cli.allowed_user_check_enabled = 0
  322. cli.allowed_users.www-data = "www-data"
  323. cli.allowed_users.apache = "apache"
  324. cli.allowed_users.jenkins = "jenkins"
  325. cli.allowed_users.bamboo = "bamboo"
  326. cli.allowed_users.root = "root"
  327. cli.allowed_groups.deploy = "deploy"
  328.  
  329. ;## payment ##
  330. ; The type numbers are used by Alice
  331. payment.credit_card.types[1] = visa
  332. payment.credit_card.types[2] = master_card
  333. payment.credit_card.types[3] = american_express
  334. payment.credit_card.types[4] = diners
  335. payment.credit_card.types[5] = hipercard
  336. payment.credit_card.codes.redecard.visa = 42
  337. payment.credit_card.codes.redecard.master_card = 42
  338. payment.credit_card.codes.redecard.american_express = 18
  339. payment.credit_card.codes.redecard.diners = 42
  340. payment.credit_card.codes.redecard.hipercard = 62
  341. payment.credit_card.codes.cielo.visa = 41
  342. payment.credit_card.codes.cielo.master_card = 106
  343. payment.credit_card.codes.cielo.american_express = 18
  344. payment.credit_card.codes.cielo.hipercard = 62
  345. payment.credit_card.codes.amex.american_express = 18
  346.  
  347. ;## optionalfeatures ##
  348. optionalFeatures.supplierEditor.active = false
  349. optionalFeatures.supplierEditor.country = 'de'
  350. optionalFeatures.campaignEditor.active = false
  351.  
  352. ;# [FIXED SHIPPING COSTS]
  353. ; this value is used only for fixed value per order shipping costs model
  354. ; for free shipping set this value to 0 (zero). if this value is greater than 0
  355. ; fixed shipping costs per order taken from value below will be calculated
  356. ; if greather than zero (>0) you should set the constant in alice to same value
  357. ; file: feature.php
  358. ;
  359. ; define('ALICE_SHIPPING_COSTS', <same value as in the config below>);
  360. ;
  361. optionalFeatures.fixedShippingCost = 0
  362. optionalFeatures.notifyOnApplicationLock = true
  363.  
  364. ;## invoices
  365. ;subdirectory for different types of invoices are in use and should be created before, e.g. /merchants or /customers
  366. ;invoices.save_path = APPLICATION_ROOT "/../shared/data/invoices"
  367. invoices.save_path = "%invoices.save_path%"
  368. invoices.merchants_path = 'merchants';
  369. invoices.customers_path = 'customers';
  370. invoices.filename = 'invoice_%s.pdf'
  371.  
  372. ;## csv exports (bob > conny)
  373. ;# remote setup example:
  374. ;# conny.import.path = APPLICATION_PATH "../../public/shared/data/"
  375. ;# conny.import.uri = "http://bob.local/shared"
  376.  
  377. conny.import.path = "%conny.import.path%"
  378. conny.import.uri = "%conny.import.uri%"
  379.  
  380. ;## CONNY ##
  381. conny.host = "%conny.host%"
  382.  
  383. ;## ordersplitting crossdocking/dropshipping ##
  384. ;ordersplitting.shipment_type = false;
  385.  
  386. ;## SPLIT TESTING ##
  387. splittesting.enabled = true
  388.  
  389. ;## GEARMAN WORKER AMOUNT ##
  390. gearman.worker.count.resize_image = 16
  391. gearman.worker.count.insert_image_id = 24
  392.  
  393. ;## GEARMAN SERVER: usually gearman host setting as localhost ##
  394. gearman.server.host = "%gearman.server.host%"
  395. gearman.server.port = "4730"
  396.  
  397. ;## development options ##
  398. development.logging = false
  399.  
  400. ;## when merging INTBID back to SHOP keep in mind customer.screen_name should be FALSE by default
  401. customer.screen_name = true
  402. ;## when merging INTBID back to SHOP keep in mind customer.address_on_registration should be FALSE by default
  403. customer.address_on_registration = "true"
  404. ;## when merging INTBID back to SHOP keep in mind customer.auto_create_supplier should be FALSE by default
  405. customer.auto_create_supplier = true
  406. ;## when merging INTBID back to SHOP keep in mind customer.terms should be FALSE by default
  407. customer.terms = true
  408.  
  409. resources.router.routes.health-check-bob.route = "/healthcheck"
  410. resources.router.routes.health-check-bob.defaults.module = "maintenance"
  411. resources.router.routes.health-check-bob.defaults.controller = "healthcheck"
  412. resources.router.routes.health-check-bob.defaults.action = "index"
  413.  
  414. ;## monitoring options ##
  415. ;default value means monitoring is disabled. value could be http://bob.local/monitoring.json
  416. monitoring.dashboard.json.url = "%monitoring.json.url%"
  417. ;username and password are used for http authentication
  418. monitoring.dashboard.json.username = "%monitoring.json.username%"
  419. monitoring.dashboard.json.password = "%monitoring.json.password%"
  420. monitoring.dashboard.json.expiration_time = "%monitoring.json.expiration_time%"
  421.  
  422. ;## COUCHBASE ##
  423. listing.storage.adapter="Couchbase"
  424.  
  425. ;## Listing couchbase access credentials
  426. listing.storage.couchbase.hostname="%alice.couchbase.hostname%"
  427. listing.storage.couchbase.bucket="%alice.couchbase.bucket%"
  428. listing.storage.couchbase.namespace="%alice.couchbase.namespace%"
  429. listing.storage.couchbase.password="%alice.couchbase.password%"
  430.  
  431. ;## Vertical of the shop
  432. ;## Used for e.g. vertical-specific migrations
  433. ;## Will be the global project name like INTRES, INTCAR
  434. shop.vertical = "%shop.vertical%"
  435. autoloadernamespaces.libphonenumber = 'libphonenumber'
  436.  
  437. ;## CSV Import temp folder
  438. csvimport.tmp_path = "%csvimport.tmp_path%"
  439.  
  440. [staging : live]
  441. assert.active = 1
  442.  
  443. [testing : live]
  444. assert.active = 1
  445.  
  446.  
  447. [dev : live]
  448. assert.active = 1
  449. phpSettings.date.timezone = "Europe/Berlin"
  450.  
  451. alice.time_limit_worker = 120
  452.  
  453. phpSettings.display_startup_errors = 1
  454. phpSettings.display_errors = 1
  455. shop.logging_path = "@shop.logging_path@"
  456.  
  457. ;resources.multidb.main.profiler.enabled = "true"
  458. ;resources.multidb.main.profiler.class = "Zend_Db_Profiler_Firebug"
  459.  
  460. ;## FRONT_CONTROLLER ##
  461. resources.frontController.params.displayExceptions = 1
  462. resources.cachemanager.default.frontend.options.cache_id_prefix = APPLICATION_ENV
  463. resources.cachemanager.db.frontend.options.cache_id_prefix = APPLICATION_ENV
  464. ;## CACHE ##
  465. ;resources.cachemanager.db.frontend.options.caching = false
  466.  
  467. ;## ADDITIONALS ##
  468. customer.password_hash_salt = "saltlakecity_saltlakecity_saltlakecity_saltlakecity_saltlakecity_saltlakecity_saltlakecity_saltlakecity_saltlakecity"
  469. prudsys.enabled = FALSE
  470.  
  471. [automatedtests : dev]
  472.  
  473. assert.active = 1
  474. autoloadernamespaces.BobTest = "BobTest_"
  475. resources.multidb.main.adapter = "Pdo_Mysql"
  476. resources.multidb.main.host = "@test.db.params.host@"
  477. resources.multidb.main.username = "@test.db.params.username@"
  478. resources.multidb.main.password = "@test.db.params.password@"
  479. resources.multidb.main.dbname = "@test.db.params.dbname@"
  480. resources.multidb.main.charset = utf8
  481. resources.multidb.main.default = true
  482.  
  483. resources.multidb.monitoring.adapterNamespace = "Bob_Db_Adapter"
  484. resources.multidb.monitoring.adapter = "Pdo_Mysql"
  485. resources.multidb.monitoring.host = "@test.db.params.host@"
  486. resources.multidb.monitoring.username = "@test.db.params.username@"
  487. resources.multidb.monitoring.password = "@test.db.params.password@"
  488. resources.multidb.monitoring.dbname = "@test.db.params.dbname@"
  489. resources.multidb.monitoring.charset = utf8
  490. resources.multidb.monitoring.default = false
  491. resources.multidb.monitoring.driver_options.1001 = 1 ; means PDO::MYSQL_ATTR_LOCAL_INFILE
  492. resources.multidb.monitoring.isBobDbAdapterReplication = false;
  493.  
  494. ;## TESTS ##
  495. phpunit.mocks.should_be_tested = 0
Add Comment
Please, Sign In to add comment