Skip to content

Commit b4f6be9

Browse files
committed
Fix README.md
1 parent 3733781 commit b4f6be9

2 files changed

Lines changed: 11 additions & 8 deletions

File tree

.php-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
8.2
1+
8.3

README.md

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -102,17 +102,20 @@ To contribute to this plugin clone this repository, create a branch for your fea
102102

103103
```bash
104104
composer install
105-
(cd tests/Application && yarn install)
106-
(cd tests/Application && yarn build)
107-
(cd tests/Application && APP_ENV=test bin/console assets:install public)
105+
(cd vendor/sylius/test-application && yarn install)
106+
(cd vendor/sylius/test-application && yarn build)
107+
vendor/bin/console assets:install
108108
109109
docker-compose up -d # only if you haven't mysql and mailhog installed locally
110110
111-
(cd tests/Application && APP_ENV=test bin/console doctrine:database:create)
112-
(cd tests/Application && APP_ENV=test bin/console doctrine:schema:create)
113-
```
111+
vendor/bin/console doctrine:database:create
112+
vendor/bin/console doctrine:migrations:migrate -n
113+
# Optionally load data fixtures
114+
vendor/bin/console sylius:fixtures:load -n
114115
115-
To be able to setup a plugin's database, remember to configure you database credentials in `tests/Application/.env` and `tests/Application/.env.test`.
116+
symfony server:ca:install
117+
symfony server:start -d
118+
```
116119

117120
### Running plugin tests
118121

0 commit comments

Comments
 (0)