greet/README.md
Dan Anglin c036319fc6
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
docs: update README.md
2023-05-13 23:22:05 +01:00

40 lines
674 B
Markdown

# Greetings
## Summary
Greet is a simple Go CLI application that greets a recipient.
This is a simple project used for the purpose of testing upcoming automation,
such as CI/CD integration and dependency management, which will be used by other projects
hosted in Code Flow.
## Project's Avatar
The project's avatar was made by [Smashicons](https://www.flaticon.com/authors/smashicons) from [Flaticon](https://www.flaticon.com).
## Requirements
- [Go](https://go.dev/)
## Build
```
go build -o greet .
```
## Run
Greet the world.
```
./greet
```
Greet a person.
```
./greet Bob
```
## Run Dagger Pipeline locally
```
pushd internal/build && go run . && popd
```