Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/vladimirfomene/product-search
https://github.com/vladimirfomene/product-search
Last synced: 8 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/vladimirfomene/product-search
- Owner: vladimirfomene
- Created: 2020-04-01T18:46:10.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2022-12-12T08:58:53.000Z (almost 2 years ago)
- Last Synced: 2023-04-04T23:24:31.994Z (over 1 year ago)
- Language: JavaScript
- Size: 122 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# App Setup
Start up an instance of an Elastic Search server with the following command:
```sh
sudo docker run -d --name elasticsearch -p 9200:9200 -p 9300:9300 -e "discovery.type=single-node" elasticsearch:6.8.7
```Once you have Elastic Server running, load the data into the server by running the following
command:```sh
node load_product.js
```# Install Dependencies
Install your Node.js dependencies by running the following command in your terminal.
```sh
npm install
```# Test Application
Start the project by executing `npm run start` in your commandline.