mirror of
https://github.com/LukeHagar/plex-sdk-docs.git
synced 2025-12-06 04:20:46 +00:00
12 lines
229 B
Makefile
12 lines
229 B
Makefile
.PHONY: *
|
|
|
|
docs:
|
|
rm -rf src || true
|
|
speakeasy generate docs --schema /github/workspace/openapi/openapi_0 --out ./ --langs python,typescript,go,curl --compile
|
|
|
|
build:
|
|
pnpm run build
|
|
|
|
run-server:
|
|
$(MAKE) build
|
|
go run server.go
|