Skip to content

Instantly share code, notes, and snippets.

@nimeshpahadi
Last active March 6, 2017 06:56
Show Gist options
  • Save nimeshpahadi/478798b20135eaea7dac5d00bfa88755 to your computer and use it in GitHub Desktop.
Save nimeshpahadi/478798b20135eaea7dac5d00bfa88755 to your computer and use it in GitHub Desktop.
install sylius with npm & gulp
# Download through composer
composer create-project -s beta sylius/sylius-standard acme (--project name)
# follw the default instruction and enter
# Move to the newly created directory
cd --directory name
php bin/console sylius:install
# install nodejs & npm using a PPA
sudo apt-get install python-software-properties
curl -sL https://deb.nodesource.com/setup_7.x | sudo -E bash -
sudo apt-get install nodejs
sudo apt-get install build-essential
# now inside directory install npm
npm install
# run gulp command
npm run gulp
# start server
php bin/console server:start
# open localhost:8000 to see the shop
# open localhost:8000/admin for administration panel
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment