Skip to content

Commit

Permalink
Using JWT on Apns
Browse files Browse the repository at this point in the history
  • Loading branch information
Guilherme Souza committed Sep 29, 2017
1 parent 48bd971 commit ca23433
Show file tree
Hide file tree
Showing 13 changed files with 552 additions and 387 deletions.
22 changes: 14 additions & 8 deletions Gopkg.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

27 changes: 0 additions & 27 deletions Gopkg.toml
Original file line number Diff line number Diff line change
@@ -1,30 +1,3 @@

# Gopkg.toml example
#
# Refer to https://github.com/golang/dep/blob/master/docs/Gopkg.toml.md
# for detailed Gopkg.toml documentation.
#
# required = ["github.com/user/thing/cmd/thing"]
# ignored = ["github.com/user/project/pkgX", "bitbucket.org/user/project/pkgA/pkgY"]
#
# [[constraint]]
# name = "github.com/user/project"
# version = "1.0.0"
#
# [[constraint]]
# name = "github.com/user/project2"
# branch = "dev"
# source = "github.com/myfork/project2"
#
# [[override]]
# name = "github.com/x/y"
# version = "2.4.0"


[[constraint]]
name = "github.com/RobotsAndPencils/buford"
version = "0.12.0"

[[constraint]]
name = "github.com/alexcesaro/statsd"
version = "2.0.0"
Expand Down
6 changes: 5 additions & 1 deletion config/default.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,11 @@ apns:
logStatsInterval: 10000
apps: "game"
certs:
game: /certs/cert.pem
game:
authKeyPath: /certs/authkey.p8
keyID: "ABC123DEFG"
teamID: "ABC123DEFG"
topic: "com.game.test"
gcm:
pingInterval: 30
pingTimeout: 10
Expand Down
6 changes: 5 additions & 1 deletion config/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,11 @@ apns:
logStatsInterval: 750
apps: "game"
certs:
game: ../tls/self_signed_cert.pem
game:
authKeyPath: ../tls/authkey.p8
keyID: "ABC123DEFG"
teamID: "ABC123DEFG"
topic: "com.game.test"
gcm:
pingInterval: 30
pingTimeout: 10
Expand Down
Loading

0 comments on commit ca23433

Please sign in to comment.