https://github.com/kostis-codefresh/notification-tester
Simple Wehook tester
https://github.com/kostis-codefresh/notification-tester
Last synced: about 1 year ago
JSON representation
Simple Wehook tester
- Host: GitHub
- URL: https://github.com/kostis-codefresh/notification-tester
- Owner: kostis-codefresh
- Created: 2022-09-09T12:05:42.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2022-09-09T14:51:22.000Z (over 3 years ago)
- Last Synced: 2025-02-08T23:15:31.303Z (over 1 year ago)
- Language: Go
- Size: 27.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Simple notification tester
This is an example application to be used with the [Codefresh GitOps Certification](https://learning.codefresh.io/)
It is simple application that consists of one container.
It accepts webhooks of kind at `/notify` and then shows them
in a simple list view

## How to run locally
`go run .`
then visit http://localhost:8080 in your browser
## How to build and run a container
Run
* `docker build . -t my-app` to create a container image
* `docker run -p 8080:8080 my-app` to run it
then visit http://localhost:8080 in your browser
You can find prebuilt images at [https://hub.docker.com/r/kostiscodefresh/summer-of-k8s-app/tags](https://hub.docker.com/r/kostiscodefresh/summer-of-k8s-app/tags)