greet/README.md

41 lines
674 B
Markdown
Raw Normal View History

2021-08-28 19:24:43 +01:00
# Greetings
2021-08-29 15:36:09 +01:00
## 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).
2021-08-29 15:36:09 +01:00
## Requirements
- [Go](https://go.dev/)
## Build
```
2023-05-13 23:22:05 +01:00
go build -o greet .
2021-08-29 15:36:09 +01:00
```
## Run
Greet the world.
```
2023-05-13 23:22:05 +01:00
./greet
2021-08-29 15:36:09 +01:00
```
Greet a person.
```
2023-05-13 23:22:05 +01:00
./greet Bob
```
## Run Dagger Pipeline locally
```
2023-05-13 23:22:05 +01:00
pushd internal/build && go run . && popd
```