Go to file
Bo-Yi Wu 70f2437b76 Add after_success in travis.
Signed-off-by: Bo-Yi Wu <appleboy.tw@gmail.com>
2016-04-12 11:10:04 +08:00
certificate Add tls and normal server listen testing. 2016-04-02 00:37:58 +08:00
config #10 support docker build image for production. 2016-04-11 16:38:59 +08:00
docker add default config.yml 2016-04-11 20:27:12 +08:00
gorush fix testing. 2016-04-11 21:32:40 +08:00
screenshot bump 1.0.0 and add status screenshot. 2016-04-11 15:13:13 +08:00
script fix sh error. 2016-03-28 15:57:20 +08:00
.editorconfig add editor config 2016-03-24 16:10:46 +08:00
.gitignore #10 support docker build image for production. 2016-04-11 16:38:59 +08:00
.travis.yml Add after_success in travis. 2016-04-12 11:10:04 +08:00
LICENSE Initial commit 2016-03-22 15:15:20 +08:00
Makefile Add after_success in travis. 2016-04-12 11:10:04 +08:00
README.md fix testing. 2016-04-11 21:32:40 +08:00
gorush.go remove log message. 2016-04-11 14:54:37 +08:00

README.md

Gopush

A push notification server using Gin framework written in Go (Golang).

Build Status Coverage Status Go Report Card codebeat badge

Feature

  • Support Google Cloud Message using go-gcm library for Android.
  • Support HTTP/2 Apple Push Notification Service using apns2 library.
  • Support YAML configuration.
  • Support command line to send single Android or iOS notification.
  • Support Web API to send push notification.

See the YAML config example:

core:
  port: "8088"
  max_notification: 100
  mode: "release"
  ssl: false
  cert_path: "cert.pem"
  key_path: "key.pem"

api:
  push_uri: "/api/push"
  stat_go_uri: "/api/status"

android:
  enabled: true
  apikey: "YOUR_API_KEY"

ios:
  enabled: false
  pem_cert_path: "cert.pem"
  pem_key_path: "key.pem"
  production: false

log:
  format: "string" # string or json
  access_log: "stdout" # stdout: output to console, or define log path like "log/access_log"
  access_level: "debug"
  error_log: "stderr" # stderr: output to console, or define log path like "log/error_log"
  error_level: "error"

Basic Usage

How to send push notification using gopush command? (Android or iOS)

Download gopush binary file from release page.

Android

Send single notification with the following command.

$ gopush -android -m="your message" -k="API Key" -t="Device token"

iOS

Send single notification with the following command.

$ gopush -ios -m="your message" -i="API Key" -t="Device token"
  • -m: Notification message.
  • -i: Apple Push Notification Certificate path (pem file).
  • -t: Device token.

The default endpoint is APNs development. Please add -production flag for APNs production push endpoint.

$ gopush -ios -m="your message" -i="API Key" -t="Device token" -production

Run gopush web server

Please make sure your config.yml exist. Default port is 8088.

$ gopush -c config.yml

Test status of api server using httpie tool:

$ http -v --verify=no --json GET https://localhost:8088/api/status

statue screenshot

Run gopush in Docker

Set up gopush in the cloud in under 5 minutes with zero knowledge of Golang or Linux shell using our gopush Docker image.

$ docker pull appleboy/gopush
$ docker run -name gopush -p 80:8088 appleboy/gopush

Testing your gopush server.

$ http -v --verify=no --json GET http://your.docker.host/api/status

License

Copyright 2016 Bo-Yi Wu @appleboy.

Licensed under the MIT License.