Skip to content

Latest commit

 

History

History
63 lines (46 loc) · 721 Bytes

README.md

File metadata and controls

63 lines (46 loc) · 721 Bytes

yhttp-boilerplate

A simple template for yhttp framework.

Development

Setup development environment

make venv
make activate.sh
make env

Or to delete the current environment and make a fresh one for project.

make fresh env

To activate the created python virtual environment

source activate.sh

Running tests

make test

for code coverage

make cover

Linter

make lint

Serve

make serve

The default bind is localhost:8080 and you can check it by curl

curl localhost:8080
curl -X describe localhost:8080

Create source distribution

make dist

Clean distribution directory

make clean