Skip to content
This repository was archived by the owner on Jan 13, 2026. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .aws/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,19 +52,19 @@

```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
```

### 2. サービススタックのデプロイ

```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=<ECR_IMAGE_URI> \
Expand Down
2 changes: 1 addition & 1 deletion .aws/cfn-repository.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```

## 注意事項
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# hono-lambda-poc
# hono-spa-lambda

A minimal SPA application using Hono and React, running on AWS Lambda.

Expand All @@ -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
```