Skip to content

Latest commit

 

History

History
35 lines (24 loc) · 654 Bytes

README.md

File metadata and controls

35 lines (24 loc) · 654 Bytes

quart-app

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-app

Create Python virtual environment,

$ poetry shell

Install dependencies

$ poetry install

Run Project

Run the applicaton,

$ python run.py

Then viist http://127.0.0.1:8080.

Happy Coding!