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

Commit abc618c

Browse files
authored
Merge pull request #360 from synoa/fix/remove-user-from-default-json
Remove default user and password from config/default.json
2 parents 62fd54b + f64b58d commit abc618c

File tree

4 files changed

+5
-6
lines changed

4 files changed

+5
-6
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
4242

4343
### Changed
4444
- Sharp dependency has been updated. *It might require reinstalling yarn dependencies* - @lukeromanowicz
45+
- Replaced index property value `not_analyzed` with `true` for `options` field in attribute schema - @adityasharma7 (#334)
4546

4647
### Fixed
4748
- Missing `res` and `req` parameters are now passed to ProductProcessor - @jahvi (#218)

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Besides a big improvement for the shopping experience, we also want to create a
1919
- Docker and Docker Compose
2020

2121
Already included in `vue-storefront-api` Docker image (required locally, if you do not use containerization):
22-
- Node.js 8.x or higher
22+
- Node.js 10.x or higher
2323
- Yarn
2424

2525
## Installation
@@ -82,7 +82,7 @@ This backend is using ElasticSearch data formats popularized by [ElasticSuite fo
8282
Please use data migration mechanism provided to manipulate Redis, ElasticSearch or kue. Details: https://github.com/DivanteLtd/vue-storefront-api/tree/master/doc
8383

8484
## Adding custom modules with own dependencies (Yarn only)
85-
When adding custom [Extensions to the API](https://github.com/DivanteLtd/vue-storefront/blob/master/doc/Extending%20vue-storefront-api.md) you might want to define some dependencies inside them. Thanks to [Yarn workspaces](https://yarnpkg.com/lang/en/docs/workspaces/) dependecies defined inside your custom module will be intaled when you execute `yarn` at project root level, so it's way esier and faster than installing all modules dependcies separetly.
85+
When adding custom [Extensions to the API](https://github.com/DivanteLtd/vue-storefront/blob/master/doc/Extending%20vue-storefront-api.md) you might want to define some dependencies inside them. Thanks to [Yarn workspaces](https://yarnpkg.com/lang/en/docs/workspaces/) dependencies defined inside your custom module will be installed when you execute `yarn` at project root level, so it's way easier and faster than installing all modules dependencies separately.
8686

8787
To do this, define the `package.json` with your dependencies in your custom module:
8888
- `src/api/extensions/{your-custom-extension}/package.json`

config/default.json

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,6 @@
2121
"host": "localhost",
2222
"port": 9200,
2323
"protocol": "http",
24-
"user": "elastic",
25-
"password": "changeme",
2624
"min_score": 0.01,
2725
"indices": [
2826
"vue_storefront_catalog",

config/elastic.schema.attribute.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010
"properties": {
1111
"value": {
1212
"type": "text",
13-
"index": "not_analyzed"
13+
"index": true
1414
}
1515
}
1616
}
1717
}
18-
}
18+
}

0 commit comments

Comments
 (0)