Last active
December 15, 2015 00:38
-
-
Save pjedrzejewski/5174105 to your computer and use it in GitHub Desktop.
Sylius quick start
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ curl -sS https://getcomposer.org/installer | php | |
$ php composer.phar create-project sylius/sylius -s dev | |
$ cd sylius | |
$ vi sylius/config/container/parameters.yml # And put your values! | |
$ php sylius/console doctrine:database:create | |
$ php sylius/console doctrine:schema:create | |
$ php sylius/console doctrine:fixtures:load # If you want to load sample data. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment