From 87ba35c41abc38b2f5b8c29d9c324480c02532c3 Mon Sep 17 00:00:00 2001 From: kanarus Date: Mon, 11 Aug 2025 19:31:19 +0900 Subject: [PATCH] docs: follow templates repo's rename --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 8300decb6..0ad45ae7e 100644 --- a/README.md +++ b/README.md @@ -221,7 +221,7 @@ Ohkami has first-class support for Cloudflare Workers: And also maintains useful project template. Run : ```sh -npm create cloudflare <project dir> -- --template https://github.com/ohkami-rs/ohkami-templates/worker +npm create cloudflare <project dir> -- --template https://github.com/ohkami-rs/templates/worker ``` then `<project dir>` will have `wrangler.jsonc`, `package.json` and a Rust library crate. @@ -232,7 +232,7 @@ Local dev by `npm run dev` and deploy by `npm run deploy` ! See -- `worker.*` temaplates in [template repository](https://github.com/ohkami-rs/ohkami-templates) +- `worker.*` temaplates in [template repository](https://github.com/ohkami-rs/templates) - `worker.*` samples in [samples directory](https://github.com/ohkami-rs/ohkami/tree/main/samples) - `#[worker]`'s documentation comment in [macro definitions](https://github.com/ohkami-rs/ohkami/tree/main/ohkami_macros/src/lib.rs) @@ -247,7 +247,7 @@ Both `Function URLs` and `API Gateway` are supported, and WebSocket is not suppo [cargo lambda](https://crates.io/crates/cargo-lambda) will be good partner. Let's run : ```sh -cargo lambda new <project dir> --template https://github.com/ohkami-rs/ohkami-templates +cargo lambda new <project dir> --template https://github.com/ohkami-rs/templates ``` `lambda_runtime::run(your_ohkami)` make `you_ohkami` run on Lambda Function. @@ -267,7 +267,7 @@ cargo lambda deploy [--role <arn-of-a-iam-role>] [and more] See -* README of [template](https://github.com/ohkami-rs/ohkami-templates/tree/main/template) +* README of [template](https://github.com/ohkami-rs/templates/tree/main/template) * [Cargo Lambda document](https://www.cargo-lambda.info) for details.