Skip to content

Instantly share code, notes, and snippets.

@Marko-M
Created November 29, 2014 17:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Marko-M/93260137a9b914ed94c9 to your computer and use it in GitHub Desktop.
Save Marko-M/93260137a9b914ed94c9 to your computer and use it in GitHub Desktop.
Magento 2 Alpha 106 app/etc/config.php
<?php
return array (
'backend' =>
array (
'frontName' => 'backend',
),
'db' =>
array (
'table_prefix' => '',
'connection' =>
array (
'default' =>
array (
'host' => 'localhost',
'dbname' => 'magento2',
'username' => 'magento2',
'password' => 'magento2',
'model' => 'mysql4',
'initStatements' => 'SET NAMES utf8;',
'active' => '1',
),
),
),
'crypt' =>
array (
'key' => 'c1ff39929fb50fc1b1e1510f73a72f4d',
),
'install' =>
array (
'date' => 'Sat, 29 Nov 2014 18:47:55 +0100',
),
'session' =>
array (
'save' => 'files',
),
'resource' =>
array (
'default_setup' =>
array (
'connection' => 'default',
),
),
'modules' =>
array (
'Magento_Core' => 1,
'Magento_Authorization' => 1,
'Magento_Store' => 1,
'Magento_Directory' => 1,
'Magento_Backup' => 1,
'Magento_Eav' => 1,
'Magento_Customer' => 1,
'Magento_Indexer' => 1,
'Magento_CatalogImportExport' => 1,
'Magento_Theme' => 1,
'Magento_Rule' => 1,
'Magento_Backend' => 1,
'Magento_Cms' => 1,
'Magento_Catalog' => 1,
'Magento_Payment' => 1,
'Magento_CheckoutAgreements' => 1,
'Magento_Bundle' => 1,
'Magento_CmsUrlRewrite' => 1,
'Magento_ConfigurableImportExport' => 1,
'Magento_Sales' => 1,
'Magento_Contact' => 1,
'Magento_AdminNotification' => 1,
'Magento_Cron' => 1,
'Magento_Widget' => 1,
'Magento_CatalogInventory' => 1,
'Magento_CustomerImportExport' => 1,
'Magento_DesignEditor' => 1,
'Magento_Dhl' => 1,
'Magento_Search' => 1,
'Magento_Downloadable' => 1,
'Magento_Checkout' => 1,
'Magento_Email' => 1,
'Magento_Fedex' => 1,
'Magento_GiftMessage' => 1,
'Magento_GoogleAdwords' => 1,
'Magento_GoogleAnalytics' => 1,
'Magento_GoogleOptimizer' => 1,
'Magento_GoogleShopping' => 1,
'Magento_GroupedImportExport' => 1,
'Magento_GroupedProduct' => 1,
'Magento_ImportExport' => 1,
'Magento_Authorizenet' => 1,
'Magento_User' => 1,
'Magento_LayeredNavigation' => 1,
'Magento_Log' => 1,
'Magento_Msrp' => 1,
'Magento_Multishipping' => 1,
'Magento_Newsletter' => 1,
'Magento_OfflinePayments' => 1,
'Magento_SalesRule' => 1,
'Magento_Ogone' => 1,
'Magento_PageCache' => 1,
'Magento_PayPalRecurringPayment' => 1,
'Magento_ConfigurableProduct' => 1,
'Magento_Paypal' => 1,
'Magento_Persistent' => 1,
'Magento_ProductAlert' => 1,
'Magento_RecurringPayment' => 1,
'Magento_Reports' => 1,
'Magento_RequireJs' => 1,
'Magento_Review' => 1,
'Magento_Rss' => 1,
'Magento_CatalogRule' => 1,
'Magento_Captcha' => 1,
'Magento_OfflineShipping' => 1,
'Magento_CatalogSearch' => 1,
'Magento_Sendfriend' => 1,
'Magento_Shipping' => 1,
'Magento_Sitemap' => 1,
'Magento_CatalogUrlRewrite' => 1,
'Magento_Tax' => 1,
'Magento_TaxImportExport' => 1,
'Magento_Centinel' => 1,
'Magento_Translation' => 1,
'Magento_Ui' => 1,
'Magento_Ups' => 1,
'Magento_UrlRewrite' => 1,
'Magento_Integration' => 1,
'Magento_Usps' => 1,
'Magento_Webapi' => 1,
'Magento_Weee' => 1,
'Magento_CurrencySymbol' => 1,
'Magento_Wishlist' => 1,
),
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment