mirror of
https://github.com/LukeHagar/speakeasy-playground.git
synced 2025-12-06 04:21:21 +00:00
9 lines
208 B
Makefile
9 lines
208 B
Makefile
init-venv:
|
|
if [ ! -d ".venv" ]; then python3 -m venv .venv; fi
|
|
|
|
install: init-venv
|
|
source .venv/bin/activate; python3 -m pip install .[dev]
|
|
|
|
generate:
|
|
speakeasy generate sdk -s openapi.yaml -o . -l python
|