Comment on page
⚠️ Uninstall a project
This command allows you to gracefully uninstall Create Magento App project.
You should not use this command! This is command description with how to use but we strongly recommend avoid using it.
It will remove Docker volumes (you will lose all data inside Redis, MySQL and ElasticSearch), run
magento setup:uninstall
command and remove config files from the cache folder.Add new line to
package.json
:package.json
{
"scripts": {
"cleanup": "magento-scripts cleanup"
}
}
Now use it as normal:
npm run cleanup # for NPM
yarn cleanup # for Yarn
Last modified 2yr ago