Skip to content

Latest commit

 

History

History
26 lines (21 loc) · 602 Bytes

README.md

File metadata and controls

26 lines (21 loc) · 602 Bytes

rp-flask-api

A demo API for learning and testing - Python REST APIs With Flask, Connexion, and SQLAlchemy.

Derived from https://realpython.com/flask-connexion-rest-api/

Get the app

git clone https://github.com/guolunwei/rp-flask-api.git

Build the app’s container image

cd rp-flask-api
docker build -t rp-flask-api .

Start an app container

docker run -dp 8000:8000 rp-flask-api

Explore Your API Documentation

<docker-host-ip>:8000/api/ui

image