You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
399 B
16 lines
399 B
#!/usr/bin/env node
|
|
|
|
'use strict';
|
|
|
|
var log = require('npmlog');
|
|
log.debug = log.verbose;
|
|
|
|
var config = require('../config');
|
|
var PushNotificationsService = require('../lib/pushnotificationsservice');
|
|
|
|
var pushNotificationsService = new PushNotificationsService();
|
|
pushNotificationsService.start(config, function(err) {
|
|
if (err) throw err;
|
|
|
|
console.log('Push Notification Service started');
|
|
});
|
|
|