Skip to content
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
4 changes: 2 additions & 2 deletions .template/docs/template.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -18,5 +18,5 @@ Template description for ${title_name}.
Deploy the stack using:

```bash
make deploy STACK=${name}
mise run deploy ${name}
```
2 changes: 1 addition & 1 deletion docs/template/agent.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ The template sets up:
Deploy the stack using:

```bash
make deploy STACK=agent
mise run deploy agent
```

## Features
Expand Down
2 changes: 1 addition & 1 deletion docs/template/api.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ The template sets up:
Deploy the stack using:

```bash
make deploy STACK=api
mise run deploy api
```

### Endpoints
Expand Down
2 changes: 1 addition & 1 deletion docs/template/eventbridge.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ The template sets up:
Deploy the stack using:

```bash
make deploy STACK=eventbridge
mise run deploy eventbridge
```

### Data models
Expand Down
2 changes: 1 addition & 1 deletion docs/template/graphql.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ The template sets up:
Deploy the stack using:

```bash
make deploy STACK=graphql
mise run deploy graphql
```

## Implementation
Expand Down
2 changes: 1 addition & 1 deletion docs/template/s3.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ The template sets up:
Deploy the stack using:

```bash
make deploy STACK=s3
mise run deploy s3
```

### ProcessedMessage model
Expand Down
2 changes: 1 addition & 1 deletion docs/template/sqs.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ The template sets up:
Deploy the stack using:

```bash
make deploy STACK=sqs
mise run deploy sqs
```

### Data models
Expand Down
2 changes: 1 addition & 1 deletion docs/template/stream.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ The template sets up:
Deploy the stack using:

```bash
make deploy STACK=stream
mise run deploy stream
```


Expand Down
7 changes: 7 additions & 0 deletions mise.toml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,13 @@ alias = "n"

[tasks.rename]
description = "Rename project (run once)"
usage = """
flag "--name <name>" help="Project new name"
flag "--description <description>" help="Project short description"
flag "--author <author>" help="Author name"
flag "--email <email>" help="Author email"
flag "--github <github>" help="GitHub username"
"""
run = "uv run rename"

##### Dev setup and maintenance #####
Expand Down