Links

Using Enterprise Edition

1. Create new CMA app

npx [email protected] magento-enterprise

2. Set magento.edition to "enterprise" in the config file

cma.js
module.exports = {
magento: {
first_name: 'Scandiweb',
last_name: 'Developer',
user: 'admin',
password: 'scandipwa123',
adminuri: 'admin',
mode: 'developer',
edition: 'enterprise' // <- edit this
},
configuration: {}
};

3. Run the application

Start the application with the start command.
You need access keys with access to Magento Enterprise on them to be able to install the enterprise edition.
npm run start