Skip to content
This repository was archived by the owner on Nov 27, 2022. It is now read-only.
/ push-it Public archive

A super light-weight Apple push notification service.

License

Notifications You must be signed in to change notification settings

codefirst/push-it

Folders and files

NameName
Last commit message
Last commit date

Latest commit

7690772 · Jan 28, 2017

History

22 Commits
Jul 3, 2014
Jul 3, 2014
Jul 3, 2014
Sep 11, 2016
Sep 11, 2016
Jun 27, 2014
Jun 27, 2014
Oct 6, 2014
Jul 3, 2014
Oct 6, 2014
Jun 27, 2014
Sep 11, 2016
Jan 28, 2017

Repository files navigation

PushIt

Deploy

wercker status

Overview

A super light-weight Apple push notification service.

Feature

  • No database
  • No configurations
  • No UI

Deploying Heroku

$ heorku create
$ cp apple_push_notification.pem .
$ git add .
$ git commit -am "Add .pem"
$ git push heroku master

If you use production .pem:

$ heroku config:add APN_ENVIRONMENT=production

How to pass .pem via environment variables

Local

$ export APN_CERTIFICATE_BASE64=`bundle exec rake APN_CERTIFICATE=/path/to/aps_developer_identity.pem`
$ PORT=4567 bundle exec foreman start

Heroku

$ heorku create
$ git push heroku master
$ heroku config:add APN_CERTIFICATE_BASE64=`bundle exec rake APN_CERTIFICATE=/path/to/aps_developer_identity.pem`
$ heroku config:add APN_CERTIFICATE=tmp/apple_push_notification.pem

How to Push

$ curl -XPOST https://yourapp.herokuapp.com/message \
  -H 'Content-Type: application/json' \
  -d '{
    "tokens":["xxxxxxxx xxxxxxxx xxxxxxxx xxxxxxxx xxxxxxxx xxxxxxxx xxxxxxxx xxxxxxxx"],
    "payload": {
      "aps" : {
        "alert" : "Yo",
        "badge" : 0,
        "sound" : "default",
      },
      "my_data" : "my_string"
    }
  }'

Acknowledge

This code is extracted from Helios by Mattt Thompson.

About

A super light-weight Apple push notification service.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages