Skip to content

Latest commit

 

History

History
39 lines (26 loc) · 739 Bytes

README.md

File metadata and controls

39 lines (26 loc) · 739 Bytes

quart-api

Dev Environment

This example project is using poetry to manage the environment and dependencies. If you are not familiar with poetry yet, please refer to this tutorial https://github.com/jgujerry/python-virtual-environments/tree/main/poetry

Get into the project directory,

$ cd quart-api

Create Python virtual environment,

$ poetry shell

Install dependencies

$ poetry install

Run Project

Run the applicaton,

$ python run.py

Then vist http://127.0.0.1:8080.

API Docs

Swagger Docs - http://127.0.0.1:8080/docs

Happy Coding!