initial project

Signed-off-by: Bo-Yi Wu <appleboy.tw@gmail.com>
This commit is contained in:
Bo-Yi Wu
2017-06-10 11:14:12 +08:00
parent c7d5b0bdee
commit 24befab16f
11 changed files with 1166 additions and 2 deletions
+38
View File
@@ -0,0 +1,38 @@
// Sending line notifications using a binary, docker or Drone CI written in Go (Golang).
//
// Details about the drone-line project are found in github page:
//
// https://github.com/appleboy/drone-line
//
// The pre-compiled binaries can be downloaded from release page.
//
// Setup Webhook service
//
// Setup Webhook service as default port 8088.
//
// drone-line-v1.4.0-windows-amd64.exe \
// --secret xxxx \
// --token xxxx \
// webhook
//
// Change default webhook port to 8089.
//
// drone-line-v1.4.0-windows-amd64.exe \
// --port 8089 \
// --secret xxxx \
// --token xxxx \
// webhook
//
// Send Notification
//
// Setup the --to flag after fetch user id from webhook service.
//
// drone-line-v1.4.0-windows-amd64.exe \
// --secret xxxx \
// --token xxxx \
// --to xxxx \
// --message "Test Message"
//
// For more details, see the documentation and example.
//
package main