Skip to content

guolunwei/rp-flask-api

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 

Repository files navigation

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