From b81f5b328488a99e017c002d53a07e4e4ff5d032 Mon Sep 17 00:00:00 2001 From: syumai Date: Mon, 30 May 2022 08:40:36 +0900 Subject: [PATCH] update example README files --- examples/basic-auth-server/README.md | 25 +++++++++++++++++++++++++ examples/hello/README.md | 25 +++++++++++++++++++++++++ 2 files changed, 50 insertions(+) diff --git a/examples/basic-auth-server/README.md b/examples/basic-auth-server/README.md index 75f6b05..533c13e 100644 --- a/examples/basic-auth-server/README.md +++ b/examples/basic-auth-server/README.md @@ -8,3 +8,28 @@ * Try: - userName: `user` - password: `password` + +## Development + +### Requirements + +This project requires these tools to be installed globally. + +* wrangler +* tinygo + +### Commands + +``` +make dev # run dev server +make build # build Go Wasm binary +make publish # publish worker +``` + +## Author + +syumai + +## License + +MIT diff --git a/examples/hello/README.md b/examples/hello/README.md index 5276432..046c54f 100644 --- a/examples/hello/README.md +++ b/examples/hello/README.md @@ -7,3 +7,28 @@ * https://hello.syumai.workers.dev/ * https://hello.syumai.workers.dev/?name=syumai + +## Development + +### Requirements + +This project requires these tools to be installed globally. + +* wrangler +* tinygo + +### Commands + +``` +make dev # run dev server +make build # build Go Wasm binary +make publish # publish worker +``` + +## Author + +syumai + +## License + +MIT