mirror of
https://github.com/Sylius/Sylius.git
synced 2026-07-14 09:02:12 +00:00
Add installation instruction
This commit is contained in:
parent
42e7921675
commit
0359bd6767
1 changed files with 18 additions and 4 deletions
22
README.md
22
README.md
|
|
@ -1,11 +1,25 @@
|
|||
Sylius [](http://travis-ci.org/Sylius/Sylius)
|
||||
======
|
||||
|
||||
Sylius is ecommerce solution for [Symfony2 framework](http://symfony.com)...
|
||||
See the [DEMO](http://sylius.org/sandbox/).
|
||||
Sylius is **modern ecommerce solution for PHP**, based on the [**Symfony2**](http://symfony.com) framework.
|
||||
|
||||
Quick installation
|
||||
------------------
|
||||
Installation
|
||||
------------
|
||||
|
||||
``` bash
|
||||
$ wget http://getcomposer.org/composer.phar
|
||||
$ php composer.phar create-project sylius/sylius -s dev
|
||||
```
|
||||
|
||||
Then configure your project and create database.
|
||||
|
||||
``` bash
|
||||
$ 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.
|
||||
```
|
||||
|
||||
[Behat](http://behat.org) scenarios
|
||||
-----------------------------------
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue