Skip to content

Latest commit

 

History

History
30 lines (22 loc) · 776 Bytes

development.md

File metadata and controls

30 lines (22 loc) · 776 Bytes

Development

git clone [email protected]:Sylius/PayPalPlugin.git
(cd tests/Application && yarn install)
(cd tests/Application && yarn build)
(cd tests/Application && bin/console assets:install)
(cd tests/Application && bin/console doctrine:database:create)
(cd tests/Application && bin/console doctrine:migrations:migrate -n)

Opening Sylius with your plugin

  • Using test environment:

    (cd tests/Application && APP_ENV=test bin/console sylius:fixtures:load)
    (cd tests/Application && APP_ENV=test symfony serve)
  • Using dev environment:

    (cd tests/Application && bin/console sylius:fixtures:load)
    (cd tests/Application && symfony serve)

Prev: Processing payments