This is an extension project which allow Magento and Oracle CX Apps integration for two-way data ingestion. This project aim to add marketing capability through Magento e-commerce platform via Oracle CX Apps.
- We need Magento e-commerce platform, and composer to use this extension.
- This extension is used to leverage marketing capability with Oracle Responsys, so you must have a Responsys account to do the setup.
- Clone this respository
git clone https://github.com/oracle/magento-extension-cx-apps
- Run this command to build the deliverable out of this project.
php ci/build.php --environment prod --version ${your version}
- You can publish this deliverable to use via composer, or you can use this with your local Magento installation.
The instructions outlined here will help you to install extension using composer as standard tool.
Please note that, if your Magento version is below 2.4.2, then the Composer version should be v1, for Magento 2.4.2 and above Composer v1 and v2 are allowed. Install the required Composer version following the guide on getcomposer.
Follow below steps to get the Magento extension installed.
- Open the terminal, navigate to your Magento installation folder, and add
the following to the base Magento
composer.json
file
Array format:
"repositories": [{
"type": "composer",
"url": "https://raw.githubusercontent.com/oracle/magento-extension-cx-apps/main/packages.json"
}]
JSON Object Format:
"repositories": {
"oracle": {
"type": "composer",
"url": "https://raw.githubusercontent.com/oracle/magento-extension-cx-apps/main/packages.json"
}
}
- Run below command
composer require oracle/magento-module-all
This command will get the specified component from the mentioned repositories url.
- Run below command to enable these modules.
./bin/magento module:enable Oracle_Browse Oracle_Cart Oracle_Connector
Oracle_Contact Oracle_Coupon Oracle_Email Oracle_Integration
Oracle_Inventory Oracle_M2 Oracle_Notification Oracle_Optin
Oracle_Order Oracle_Product Oracle_Rating Oracle_Redemption
- Run below command to make sure that the enabled modules are properly registered and their tables in the database are created properly
./bin/magento setup:upgrade
- Run below command to recompile entire Magento project to generate code and configure dependency injection
./bin/magento setup:di:compile
- The final step is to clear all cache. Please run below command to flush the cache.
./bin/magento cache:flush
Following above step will install the Magento extension. Post this follow instruction from the CX Apps help page to establish connection.
See Documentation for the Magento Connector App.
We would love to learn more about your use-cases and how we can improve this extension for all of its users. Before submitting code, we encourage you to start a discussion here on GitHub so that we can work with you on your contribution. If an existing feature isn't working as expected, please open an issue. Before submitting a pull request, please review our contribution guide.
Please consult the security guide for our responsible security vulnerability disclosure process.
Copyright (c) 2021, 2022 Oracle and/or its affiliates.
Released under the Universal Permissive License v1.0 as shown at https://oss.oracle.com/licenses/upl/.