Create Magento App
Create ScandiPWA AppScandiPWA DocsGitHub
v2
v2
  • Create Magento App
  • Getting started
    • Getting Started
    • Prerequisites
      • Linux requirements
      • MacOS requirements
        • Apple Silicon
      • Windows requirements
    • Available commands
      • Start the application
      • Stop the application
      • Check application status
      • Enter application CLI
      • Explore application logs
      • Execute commands in Docker containers
      • Link a theme
      • Import database dump
      • ⚠️ Uninstall a project
    • Folder structure
    • Updating to New Releases
      • Testing Alpha Releases
    • Configuration File
      • System Configuration File
    • Supported Magento versions
    • How does it work?
    • Limitations
    • What Is New in Version 2
  • Usage guide
    • Using console commands
    • Accessing Docker containers
    • Linking a Scandi Theme
    • Enabling XDebug
    • Enabling SSL
    • Configuring PHP
    • Configuring Multi-Store
    • Configuring NewRelic
    • Access on the local network
    • Using custom domain
    • Using Enterprise Edition
    • Using OpenSearch
    • Importing database
      • Importing remote database
    • Converting legacy Docker setup to CMA
    • Improve Performance
  • Container images
    • PHP Images
      • PHP 8.3
        • PHP 8.3 with Magento 2.4 extensions
        • PHP 8.3 with XDebug
          • PHP 8.3 with XDebug with Magento 2.4 extensions
      • PHP 8.2
        • PHP 8.2 with Magento 2.4 extensions
        • PHP 8.2 with XDebug
          • PHP 8.2 with XDebug with Magento 2.4 extensions
      • PHP 8.1
        • PHP 8.1 with Magento 2.4 extensions
        • PHP 8.1 with XDebug
          • PHP 8.1 with XDebug with Magento 2.4 extensions
      • PHP 7.4
        • PHP 7.4 with Magento 2.4 extensions
        • PHP 7.4 with XDebug
          • PHP 7.4 with XDebug with Magento 2.4 extensions
      • PHP 7.3
        • PHP 7.3 with Magento 2.4 extensions
        • PHP 7.3 with Magento 2.3 extensions
        • PHP 7.3 with XDebug
          • PHP 7.3 with XDebug with Magento 2.4 extensions
          • PHP 7.3 with XDebug with Magento 2.3 extensions
      • PHP 7.2
        • PHP 7.2 with Magento 2.3 extensions
        • PHP 7.2 with XDebug
          • PHP 7.2 with XDebug with Magento 2.3 extensions
    • ElasticSearch Images
      • ElasticSearch 6.8
  • Scripts Extensions
    • PHP Extensions
      • PHP Extensions Package
      • (deprecated) ionCube Extension
  • Troubleshooting
    • Common Issues
    • CMA Debugging
    • Uninstall CMA
Powered by GitBook
On this page

Was this helpful?

  1. Getting started

Updating to New Releases

PreviousFolder structureNextTesting Alpha Releases

Last updated 1 year ago

Was this helpful?

Create Magento App is divided into two packages:

  • create-magento-app is a global command-line utility that you use to create new projects.

  • @scandipwa/magento-scripts is a development dependency in the generated projects (including this one).

When you run npx create-magento-app my-app it automatically installs the latest version of Create Magento App.

We create a project with the latest version of @scandipwa/magento-scripts so you’ll get all the new features and improvements in newly created apps automatically.

To update an existing project to a new version of @scandipwa/magento-scripts, , find the version you’re currently on (check package.json in this folder, if you’re not sure), and apply the migration instructions for the newer versions.

In most cases bumping the @scandipwa/magento-scripts version in package.json and running npm install (or yarn install) in this folder should be enough, but it’s good to consult the for potential breaking changes.

To bump the version of @scandipwa/magento-scripts to the latest available version, use:

yarn add @scandipwa/magento-scripts@latest
npm install @scandipwa/magento-scripts@latest

To install version 1 of magento-scripts use:

yarn add @scandipwa/magento-scripts@^1
npm i @scandipwa/magento-scripts@^1

We commit to keeping the breaking changes minimal so you can upgrade @scandipwa/magento-scripts painlessly.

open the change-log
change-log