https://github.com/teewrath/store-api
A simple store api enabling all kinds of request to add stores, items, fetch, delete and update them.
https://github.com/teewrath/store-api
Last synced: 12 months ago
JSON representation
A simple store api enabling all kinds of request to add stores, items, fetch, delete and update them.
- Host: GitHub
- URL: https://github.com/teewrath/store-api
- Owner: TeeWrath
- Created: 2025-03-18T05:58:16.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2025-06-07T15:17:48.000Z (about 1 year ago)
- Last Synced: 2025-06-07T16:31:44.025Z (about 1 year ago)
- Language: Python
- Homepage:
- Size: 35.2 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Store API
## How to run the Dockerfile locally
#### Create docker image
```
docker build -t TAG_FOR_IMAGE .
```
---
#### Run the image as a container with volume
```
docker run -dp 5000:5000 -w /app -v "$(pwd):/app" IMAGE_NAME sh -c "flask run --host 0.0.0.0"
```
---