Using Enterprise Edition

1. Create new CMA app

npx create-magento-app@latest magento-enterprise

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

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

3. Run the application

npm run start

Last updated

Was this helpful?