⚠️ Uninstall a project
yarn cleanup or npm run cleanup
yarn cleanup or npm run cleanupCommand options
-f, --force
-f, --forceUsage example
Last updated
This command is not shipped in Create Magento App template by default. To enable it add following line to your projects package.json field scripts :
"cleanup": "magento-scripts cleanup"yarn cleanup or npm run cleanupThis 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.
-f, --forceCleanup will remove Magento files and CMA cache. The folder will remove to initial structure.
PHP will not be removed by running this command. To remove it you should delete the folder ~/.phpbrew/php/php-7.3.11/.
Add new line to package.json:
Now use it as normal:
Last updated
{
"scripts": {
"cleanup": "magento-scripts cleanup"
}
}npm run cleanup # for NPM
yarn cleanup # for Yarn