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 run gulp
symfony server:start
open http://127.0.0.1:8000
git clone https://github.com/Sylius/Sylius-Standard.git
cd Sylius-Standard
docker-compose --version
docker-compose pull --ignore-pull-failures || true
docker-compose build --pull
docker-compose up -d
docker-compose exec php bin/console sylius:fixtures:load --no-interaction
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 git@github.com:YOUR_USERNAME/Sylius.git
cd sylius
git remote add upstream git://github.com/Sylius/Sylius.git
...