diff --git a/.template/docs/template.md b/.template/docs/template.md index 8961619..f8136a9 100644 --- a/.template/docs/template.md +++ b/.template/docs/template.md @@ -5,7 +5,7 @@ Template description for ${title_name}. 1. **AWS Lambda function**: Handles events. -![Architecture diagram](diagrams/${name}.png) +![Architecture diagram showing ${title_name} component interaction and data flow](diagrams/${name}.png) ## Code @@ -18,5 +18,5 @@ Template description for ${title_name}. Deploy the stack using: ```bash -make deploy STACK=${name} +mise run deploy ${name} ``` diff --git a/docs/template/agent.md b/docs/template/agent.md index 68cad90..d906d88 100644 --- a/docs/template/agent.md +++ b/docs/template/agent.md @@ -23,7 +23,7 @@ The template sets up: Deploy the stack using: ```bash -make deploy STACK=agent +mise run deploy agent ``` ## Features diff --git a/docs/template/api.md b/docs/template/api.md index b2d64a8..570117d 100644 --- a/docs/template/api.md +++ b/docs/template/api.md @@ -22,7 +22,7 @@ The template sets up: Deploy the stack using: ```bash -make deploy STACK=api +mise run deploy api ``` ### Endpoints diff --git a/docs/template/eventbridge.md b/docs/template/eventbridge.md index 3caa552..cfb83ea 100644 --- a/docs/template/eventbridge.md +++ b/docs/template/eventbridge.md @@ -23,7 +23,7 @@ The template sets up: Deploy the stack using: ```bash -make deploy STACK=eventbridge +mise run deploy eventbridge ``` ### Data models diff --git a/docs/template/graphql.md b/docs/template/graphql.md index 28338fd..32a87cc 100644 --- a/docs/template/graphql.md +++ b/docs/template/graphql.md @@ -23,7 +23,7 @@ The template sets up: Deploy the stack using: ```bash -make deploy STACK=graphql +mise run deploy graphql ``` ## Implementation diff --git a/docs/template/s3.md b/docs/template/s3.md index 6dedbe5..62b3e89 100644 --- a/docs/template/s3.md +++ b/docs/template/s3.md @@ -22,7 +22,7 @@ The template sets up: Deploy the stack using: ```bash -make deploy STACK=s3 +mise run deploy s3 ``` ### ProcessedMessage model diff --git a/docs/template/sqs.md b/docs/template/sqs.md index a23d358..b0bff69 100644 --- a/docs/template/sqs.md +++ b/docs/template/sqs.md @@ -23,7 +23,7 @@ The template sets up: Deploy the stack using: ```bash -make deploy STACK=sqs +mise run deploy sqs ``` ### Data models diff --git a/docs/template/stream.md b/docs/template/stream.md index baa8338..651b3d0 100644 --- a/docs/template/stream.md +++ b/docs/template/stream.md @@ -24,7 +24,7 @@ The template sets up: Deploy the stack using: ```bash -make deploy STACK=stream +mise run deploy stream ``` diff --git a/mise.toml b/mise.toml index 7d1615b..19ba62e 100644 --- a/mise.toml +++ b/mise.toml @@ -43,6 +43,13 @@ alias = "n" [tasks.rename] description = "Rename project (run once)" +usage = """ +flag "--name " help="Project new name" +flag "--description " help="Project short description" +flag "--author " help="Author name" +flag "--email " help="Author email" +flag "--github " help="GitHub username" +""" run = "uv run rename" ##### Dev setup and maintenance #####