https://github.com/cwithmichael/grocery_shop
Grocery Shop site built with Spring Boot, MongoDB, React
https://github.com/cwithmichael/grocery_shop
Last synced: 12 days ago
JSON representation
Grocery Shop site built with Spring Boot, MongoDB, React
- Host: GitHub
- URL: https://github.com/cwithmichael/grocery_shop
- Owner: cwithmichael
- License: mit
- Created: 2018-05-11T19:56:19.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2018-05-14T19:09:53.000Z (about 8 years ago)
- Last Synced: 2025-01-03T09:14:37.779Z (over 1 year ago)
- Language: JavaScript
- Homepage:
- Size: 6.77 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# Grocery Shop
## Overview
This app allows you to search a databse of projects.
## Features
Allows browsing products by department.
Allows sorting products by price.
Makes the following assumptions:
If you search with all numbers, then it assumes you're trying to search by a product's id.
If you search by all text, then it assumes you want to search by description. If that fails, then it tries to search by department.
## Todo
Implement FilterBy option. As of now it's not functional.
Clean up the code.
Add tests
Make it prettier
Add sign-in option
## Requirements
JDK 8 (Make sure the JAVA_HOME environment variable is set)
MongoDB
Maven
Node/Npm
## Usage
Make sure you have a MongoDB instance running locally on port 27017.
Execute the following from the root directory after checking out the code:
```
mvn spring-boot:run &
cd ui
npm install
npm start
```
If your browser doesn't automatically open, then go here:
```
http://localhost:3000/
```