Skip to content

Latest commit

 

History

History
30 lines (19 loc) · 680 Bytes

README.md

File metadata and controls

30 lines (19 loc) · 680 Bytes

flask-minimal-webservice

A Skeleton for a Flask-powered JSON API

Installation

Method#1: With git and pip (recommended)

git clone https://git@github.com/mjalajel/flask-minimal-webservice.git
cd flask-minimal-webservice
pip install -e .

# run
flask-api --help

Method#2: With pip directly

pip install git+https://git@github.com/mjalajel/flask-minimal-webservice.git

# run
flask-api --help

Method#3: Vanilla python

git clone https://git@github.com/mjalajel/flask-minimal-webservice.git
cd flask-minimal-webservice
pip install --requirement requirements.txt

# run
python app.py --help ### OR: ./app.py --help