Skip to content
This repository was archived by the owner on May 28, 2023. It is now read-only.

Commit 483337f

Browse files
authored
Fixed incorrect commands
Corrected the container name to `vue-storefront-api_app_1` instead of `vuestorefrontapi_app_1`
1 parent 40e70cc commit 483337f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -44,19 +44,19 @@ As a result, all necessary services will be launched:
4444
Product catalog is imported using [elasticdump](https://www.npmjs.com/package/elasticdump), which is installed automatically via project dependency. The default ElasticSearch index name is: `vue_storefront_catalog`
4545

4646
- (A) `yarn restore`
47-
- (B) `docker exec -it vuestorefrontapi_app_1 yarn restore`
47+
- (B) `docker exec -it vue-storefront-api_app_1 yarn restore`
4848

4949
Then, to update the structures in the database to the latest version (data migrations), do the following:
5050

5151
- (A) `yarn migrate`
52-
- (B) `docker exec -it vuestorefrontapi_app_1 yarn migrate`
52+
- (B) `docker exec -it vue-storefront-api_app_1 yarn migrate`
5353

5454
By default, the application server is started in development mode. It means that code auto reload is enabled along with ESLint, babel support.
5555

5656
It restores JSON documents stored in `./var/catalog.json`. The opposite command - used to generate `catalog.json` file from running ElasticSearch cluster:
5757

5858
- (A) `yarn dump`
59-
- (B) `docker exec -it vuestorefrontapi_app_1 yarn dump`
59+
- (B) `docker exec -it vue-storefront-api_app_1 yarn dump`
6060

6161
**Access ElasticSearch data with Kibana**
6262

@@ -89,7 +89,7 @@ To do this, define the `package.json` with your dependencies in your custom modu
8989
- `src/api/extensions/{your-custom-extension}/package.json`
9090
- `src/platforms/{your-custom-platform}/package.json`
9191

92-
Executing `docker exec -it vuestorefrontapi_app_1 yarn install` will also download your custom modules dependencies.
92+
Executing `docker exec -it vue-storefront-api_app_1 yarn install` will also download your custom modules dependencies.
9393

9494
NOTE: `npm` users will still have to install the dependencies individually in their modules.
9595

0 commit comments

Comments
 (0)