mirror of
https://gitea.com/mcereda/oam.git
synced 2026-02-09 05:44:23 +00:00
fix: improve usability
This commit is contained in:
@@ -4,7 +4,7 @@
|
|||||||
<head>
|
<head>
|
||||||
<meta http-equiv="Content-type" content="text/html; charset=utf-8">
|
<meta http-equiv="Content-type" content="text/html; charset=utf-8">
|
||||||
<meta name="description"
|
<meta name="description"
|
||||||
content="Tech Radar: a tool to visualize technology choices, inspire and support Engineering teams at Apollo Agriculture to pick the best technologies for new projects">
|
content="Tech Radar: a tool to visualize technology choices, inspire and support Engineering teams at Example to pick the best technologies for new projects">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||||
<title>Tech Radar</title>
|
<title>Tech Radar</title>
|
||||||
<link rel="shortcut icon"
|
<link rel="shortcut icon"
|
||||||
@@ -59,4 +59,4 @@
|
|||||||
|
|
||||||
</body>
|
</body>
|
||||||
|
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
- route53
|
- route53
|
||||||
become: true
|
become: true
|
||||||
amazon.aws.route53:
|
amazon.aws.route53:
|
||||||
zone: apolloagriculture.com # FIXME
|
zone: exaample.com # FIXME
|
||||||
record: "{{ dns_challenge.challenge_data[external_url_hostname]['dns-01'].record }}"
|
record: "{{ dns_challenge.challenge_data[external_url_hostname]['dns-01'].record }}"
|
||||||
type: TXT
|
type: TXT
|
||||||
ttl: 60
|
ttl: 60
|
||||||
@@ -53,7 +53,7 @@
|
|||||||
- route53
|
- route53
|
||||||
become: true
|
become: true
|
||||||
amazon.aws.route53:
|
amazon.aws.route53:
|
||||||
zone: apolloagriculture.com # FIXME
|
zone: example.com # FIXME
|
||||||
record: "{{ validation_record }}"
|
record: "{{ validation_record }}"
|
||||||
type: TXT
|
type: TXT
|
||||||
state: absent
|
state: absent
|
||||||
|
|||||||
@@ -25,7 +25,7 @@ This allows to write sh/bash commands and have them work even where `sh` or `bas
|
|||||||
Windows) as long as any called executable is available in `PATH`.
|
Windows) as long as any called executable is available in `PATH`.
|
||||||
|
|
||||||
<details>
|
<details>
|
||||||
<summary>Installation and configuration</summary>
|
<summary>Setup</summary>
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
# Install the executable.
|
# Install the executable.
|
||||||
@@ -35,7 +35,8 @@ sudo dnf install 'go-task'
|
|||||||
sudo snap install 'task' --classic
|
sudo snap install 'task' --classic
|
||||||
|
|
||||||
# Setup the shell's completion.
|
# Setup the shell's completion.
|
||||||
curl -fsSLo "$HOME/.config/fish/completions/task.fish" 'https://raw.githubusercontent.com/go-task/task/main/completion/fish/task.fish'
|
curl -fsSL 'https://raw.githubusercontent.com/go-task/task/main/completion/fish/task.fish' \
|
||||||
|
-o "$HOME/.config/fish/completions/task.fish"
|
||||||
```
|
```
|
||||||
|
|
||||||
</details>
|
</details>
|
||||||
@@ -63,7 +64,7 @@ curl -fsSLo "$HOME/.config/fish/completions/task.fish" 'https://raw.githubuserco
|
|||||||
1. Run tasks by their name:
|
1. Run tasks by their name:
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
task assets build
|
task 'assets' 'build'
|
||||||
```
|
```
|
||||||
|
|
||||||
If task names are omitted, a task named `default` will be assumed.
|
If task names are omitted, a task named `default` will be assumed.
|
||||||
|
|||||||
Reference in New Issue
Block a user