Participating in the Shopware Boost Day #4 today I tried the most simple approach to get it running on a Linux developer machine, avoiding the Docker setup. With some help from Shopware team I got it down to:
- Checkout the shopware/development repository
- Checkout the shopware/platform repository inside development repository
- Create a database "shopware" in MySQL (this might not be needed?)
- Run the bin/setup command
These steps in the terminal are:
git git@github.com:shopware/development.git
cd development/
composer install
git clone git@github.com:shopware/platform.git platform
php bin/setup
php vendor/bin/phpunit -c platform
Note: These are the steps in March 2021 (during Shopware 6.4).