https://github.com/meherdeep/dbms-project
E-Commerce website
https://github.com/meherdeep/dbms-project
Last synced: about 2 months ago
JSON representation
E-Commerce website
- Host: GitHub
- URL: https://github.com/meherdeep/dbms-project
- Owner: Meherdeep
- Created: 2018-10-18T18:46:55.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-11-01T07:15:24.000Z (over 6 years ago)
- Last Synced: 2025-02-08T19:43:45.684Z (3 months ago)
- Language: HTML
- Size: 1.23 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# E-Commerce website
Simple E-Commerce website#### Run instruction
Install all packages
```
pip install -r requirements.txt
```Run the server
```
python server.py
```Server runs at
```
http://localhost:5000/
```#### Routes
Products
```python
GET Request
URL = 'http://localhost:5000/products'
params = {}Response
[
{
"image": "http://res.cloudinary.com/dnhwxgf8i/image/upload/c_scale,h_250,w_400/v1488011915/mockup3_kxxwfy.jpg",
"category": "Tables",
"item": "Pearl Galaxy",
"price": "$2,100"
},
{
"image": "http://res.cloudinary.com/dnhwxgf8i/image/upload/c_scale,h_250,w_400/v1488011915/mockup1_ff4smb.jpg",
...
}
]
```#### Contributors
:heart_eyes: [Nishant Rodrigues](https://github.com/nishnash54)
:open_mouth: [Meherdeep](https://github.com/Meherdeep)