Skip to content

Commit e394f43

Browse files
authored
Merge pull request #447 from mpysiak/SYL-4032-bump-to-1.14
Update readme installation instructions
2 parents 89447c4 + 9dfd4c6 commit e394f43

File tree

1 file changed

+16
-5
lines changed

1 file changed

+16
-5
lines changed

README.md

Lines changed: 16 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,22 +19,33 @@ there you will find the <a href="https://docs.sylius.com/en/latest/plugin-develo
1919

2020
## Quickstart Installation
2121

22-
### Traditional
22+
Run `composer create-project sylius/plugin-skeleton ProjectName`.
2323

24-
1. Run `composer create-project sylius/plugin-skeleton ProjectName`.
24+
### Traditional
2525

26-
2. From the plugin skeleton root directory, run the following commands:
26+
1. From the plugin skeleton root directory, run the following commands:
2727

2828
```bash
2929
$ (cd tests/Application && yarn install)
3030
$ (cd tests/Application && yarn build)
3131
$ (cd tests/Application && APP_ENV=test bin/console assets:install public)
32-
32+
3333
$ (cd tests/Application && APP_ENV=test bin/console doctrine:database:create)
3434
$ (cd tests/Application && APP_ENV=test bin/console doctrine:schema:create)
35+
# Optionally load data fixtures
36+
$ (cd tests/Application && APP_ENV=test bin/console sylius:fixtures:load --no-interaction)
3537
```
3638

37-
To be able to set up a plugin's database, remember to configure you database credentials in `tests/Application/.env` and `tests/Application/.env.test`.
39+
To be able to set up a plugin's database, remember to configure your database credentials in `tests/Application/.env` and `tests/Application/.env.test`.
40+
41+
1. Run your local server:
42+
43+
```bash
44+
symfony server:ca:install
45+
APP_ENV=test symfony server:start --dir=tests/Application/public --daemon
46+
```
47+
48+
1. Open your browser and navigate to `https://localhost:8000`.
3849
3950
### Docker
4051

0 commit comments

Comments
 (0)