airrobe/thecircularwardrobe
This release is compatible with:
- Magento 2.4.6 + PHP 8.2
- Magento 2.4.7 + PHP 8.3
This module requires an AirRobe account and access keys.
Please contact us if you do not yet have an account.
Once you have an account, login in to our Connector Dashboard and view our documentation to get your access keys.
- Unzip the zip file in
app/code/AirRobe
- Enable the module by running
php bin/magento module:enable AirRobe_TheCircularWardrobe
- Apply database updates by running
php bin/magento setup:upgrade --keep-generated
- Flush the cache by running
php bin/magento cache:flush
- Install the module composer by running
composer require airrobe/thecircularwardrobe
- enable the module by running
php bin/magento module:enable AirRobe_TheCircularWardrobe
- apply database updates by running
php bin/magento setup:upgrade --keep-generated
- Flush the cache by running
php bin/magento cache:flush
Once installed, login in to our Connector Dashboard and view the documentation for instructions on how to configure the module.
- Disable the module by running
php bin/magento module:disable AirRobe_TheCircularWardrobe
- Run
php bin/magento setup:upgrade
- Remove the module by running
- Type 1:
rm -rf src/app/code/AirRobe
- Type 2:
composer remove airrobe/thecircularwardrobe
- Type 1:
- Flush the Magento cache by running
php bin/magento cache:flush
Use these steps to create your own environment with a clean magento install with dummy data to test the module or contribute to the extension.
See markshust/docker-magento for more information, options and commands.
- Create your project folder and Download the docker-magento template
mkdir docker-magento
cd docker-magento
curl -s https://raw.githubusercontent.com/markshust/docker-magento/master/lib/template | bash
- Check the
compose.yaml
file to ensure the PHP version matches your target. For PHP 8.2, the following line should be present:
phpfpm:
image: markoshust/magento-php:8.2-fpm-4
- Download and install Magento with the following command (replace
2.4.7
with the desired version)
bin/download 2.4.7 community
bin/setup magento.test
bin/magento sampledata:deploy
bin/magento setup:upgrade
bin/composer require markshust/magento2-module-disabletwofactorauth
bin/magento module:enable MarkShust_DisableTwoFactorAuth
bin/magento setup:upgrade
Add the AirRobe repo into the app/code
directory and enable the module
cd src/app/code
mkdir AirRobe
cd AirRobe
git clone [email protected]:airrobe/magento-extension.git TheCircularWardrobe
cd ../../../../
bin/magento module:enable AirRobe_TheCircularWardrobe
bin/magento setup:upgrade
bin/magento cache:flush
- If testing the composer install on this magento install, use
bin/composer
. Usingcomposer
will not register the module correctly on this environment. - See the documentation for instructions on how to configure the module.
- You can find the Magento Admin login details in the file
env/magento.env
- Submit a Pull Request and our maintainers will respond as soon as possible
If contributing to this project, we highly recommend using the IDE PhpStorm and the following plugins:
Set your PHP Language Level and CLI interpreter to match your installed PHP version under Settings > PHP
Configure the Magento PhpStorm plugin under Settings > PHP > Frameworks > Magento
- Set the Magento installation path to
src
- Regenerate URN mappings or alternatively run
bin/magento dev:urn-catalog:generate .idea/misc.xml
Change your VCS root to the src/app/code/AirRobe/TheCircularWardrobe
directory Change VCS project root
Or remove the .git directory from the docker-magento directory How to change Git root directory?.
Sometimes you may need to clear the Magento install to start fresh, especially when an error occurs during setup. You might get an error message like
[InvalidArgumentException]
Project directory "/var/www/html/." is not empty.
If you want to completely clear the magento install in your local environment, cd
to the root directory and run
bin/removeall
rm -rf .* *