This edition is made for starting new projects. It is a standard Symfony application, which contains Sylius core as a dependency, making it safe and easy to customize and upgrade.
Start by installing Symfony server, and then run the following commands in your terminal:
composer create-project sylius/sylius-standard acme
cd acme
php bin/console sylius:install
yarn install
yarn build
symfony server:start
open http://127.0.0.1:8000
docker run --rm -v $(pwd):/app composer create-project sylius/sylius-standard acme --ignore-platform-reqs --no-scripts --no-install
cd acme
make init
open http://localhost/
This edition is made for code & documentation contributors. If you want to contribute to our project and join our community (and we would be thankful if you do!), please use this development repository on GitHub!
Just a few simple steps to have the Sylius Source code locally:
Create a GitHub account and sign in. Fork the Sylius repository and clone it locally, then add the Sylius/Sylius repository as an upstream;
git clone [email protected]:YOUR_USERNAME/Sylius.git
cd sylius
git remote add upstream git://github.com/Sylius/Sylius.git
...