command
module
Version:
v0.0.0-...-9717629
Opens a new window with list of versions in this module.
Published: Apr 27, 2020
License: MIT
Opens a new window with license information.
Imports: 4
Opens a new window with list of imports.
Imported by: 0
Opens a new window with list of known importers.
README
¶
github-webhook
Implement a basic webhook in go that listens for new issues added to this repo
build & run container
docker build --tag github-webhook-image .
docker run --name github-webhook -p 8080:8080 -d github-webhook-image
clean up
docker rm -f github-webhook
docker rmi github-webhook-image
add to nginx conf
vi /etc/nginx/nginx.conf (add)
location /postreceive {
proxy_pass http://localhost:8080;
}
sudo service nginx stop
sudo service nginx start
Documentation
¶
There is no documentation for this package.
Source Files
¶
Click to show internal directories.
Click to hide internal directories.