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

https://github.com/eon01/flaskrestful-template


https://github.com/eon01/flaskrestful-template

Last synced: 28 days ago
JSON representation

Awesome Lists containing this project

README

          

# Flask Restful Code Template
A code template to start Flask API REST projects using Flask Restful

## Without Docker

```
virtualenv -p python3 my_app
cd my_app
. bin/activate
git clone https://github.com/eon01/flaskrestful-template.git app
cd app
pip install -r requirements.txt
export FLASK_APP=app.py
flask run
```

## With Docker

```
git clone https://github.com/eon01/flaskrestful-template.git app
cd app
docker build -t my_app .
docker run -it --name my_app -p 80:5000 my_app
```