Skip to content

Latest commit

 

History

History

python

Python Hello World

To get started, create a venv and install the requirements file:

python3 -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt

To run:

python -m hypercorn --config hypercorn-config.toml example:app 

To build a docker image:

docker build .