An open API service indexing awesome lists of open source software.

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.

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"
```
---