From bd803bf68747d3bee0d90cda0d4992fd2048c32e Mon Sep 17 00:00:00 2001 From: Oyakodon Date: Wed, 29 Oct 2025 00:41:09 +0900 Subject: [PATCH] chore: rename --- .aws/README.md | 6 +++--- .aws/cfn-repository.yml | 2 +- AGENTS.md | 2 +- README.md | 4 ++-- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.aws/README.md b/.aws/README.md index 69c508d..4bcdf29 100644 --- a/.aws/README.md +++ b/.aws/README.md @@ -52,11 +52,11 @@ ```bash aws cloudformation create-stack \ - --stack-name hono-lambda-poc-repository \ + --stack-name hono-spa-lambda-repository \ --template-body file://cfn-repository.yml \ --parameters \ ParameterKey=GitHubOrg,ParameterValue=oyakodon \ - ParameterKey=RepositoryName,ParameterValue=hono-lambda-poc \ + ParameterKey=RepositoryName,ParameterValue=hono-spa-lambda \ --capabilities CAPABILITY_NAMED_IAM ``` @@ -64,7 +64,7 @@ aws cloudformation create-stack \ ```bash aws cloudformation create-stack \ - --stack-name hono-lambda-poc-service \ + --stack-name hono-spa-lambda-service \ --template-body file://cfn-service.yml \ --parameters \ ParameterKey=ImageUri,ParameterValue= \ diff --git a/.aws/cfn-repository.yml b/.aws/cfn-repository.yml index 80de5c3..a8d4fb7 100644 --- a/.aws/cfn-repository.yml +++ b/.aws/cfn-repository.yml @@ -9,7 +9,7 @@ Parameters: RepositoryName: Description: Name of GitHub repository (case sensitive) Type: String - Default: hono-lambda-poc + Default: hono-spa-lambda OIDCProviderArn: Description: Arn for the GitHub OIDC Provider. (optional) diff --git a/AGENTS.md b/AGENTS.md index 47cf29c..bb6248d 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -163,7 +163,7 @@ npm run check npm run storybook # Docker ビルド (ARM64) -docker build --platform linux/arm64 -t hono-lambda-poc . --provenance=false +docker build --platform linux/arm64 -t hono-spa-lambda . --provenance=false ``` ## 注意事項 diff --git a/README.md b/README.md index 6be9fe6..29060e4 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# hono-lambda-poc +# hono-spa-lambda A minimal SPA application using Hono and React, running on AWS Lambda. @@ -25,5 +25,5 @@ npm run check ```bash # Build for ARM64 architecture -docker build --platform linux/arm64 -t hono-lambda-poc . --provenance=false +docker build --platform linux/arm64 -t hono-spa-lambda . --provenance=false ```