Skip to content
Merged
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
9 changes: 8 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

This repository contains following features:

- [ag](./src/ag/README.md): Installs ag (The Silver Searcher), a fast grep-like text search tool
- [amazon-q-cli](./src/amazon-q-cli/README.md): Install Amazon Q CLI for AWS development
- [zip](./src/zip/README.md): Installs zip and unzip CLI tools for compression and extraction

Expand All @@ -17,6 +18,7 @@ These examples show how to use features from this repository in a devcontainer:
{
"image": "mcr.microsoft.com/devcontainers/base:ubuntu",
"features": {
"ghcr.io/jajera/features/ag:1": {},
"ghcr.io/jajera/features/amazon-q-cli:1": {},
"ghcr.io/jajera/features/zip:1": {}
}
Expand All @@ -29,7 +31,7 @@ Or use individual features:
{
"image": "mcr.microsoft.com/devcontainers/base:ubuntu",
"features": {
"ghcr.io/jajera/features/amazon-q-cli:1": {}
"ghcr.io/jajera/features/ag:1": {}
}
}
```
Expand All @@ -40,6 +42,10 @@ Similar to the [`devcontainers/features`](https://github.com/devcontainers/featu

```plaintext
├── src
│ ├── ag
│ │ ├── devcontainer-feature.json
│ │ ├── install.sh
│ │ └── README.md
│ ├── amazon-q-cli
│ │ ├── devcontainer-feature.json
│ │ ├── install.sh
Expand All @@ -49,6 +55,7 @@ Similar to the [`devcontainers/features`](https://github.com/devcontainers/featu
│ │ ├── install.sh
│ │ └── README.md
├── test
│ ├── ag
│ ├── amazon-q-cli
│ └── zip
...
Expand Down