Compare View

switch
from
...
to
 
Commits (2)

Changes

Showing 4 changed files Side-by-side Diff

1 1 {
  2 + "name": "SMS",
  3 +
2 4 "# messaging_url": "messaging service url",
3 5 "messaging_url": "http://localhost:32979/",
4 6  
... ... @@ -5,5 +5,9 @@ process.chdir(__dirname);
5 5 const fs = require('fs');
6 6 fs.writeFileSync('pid.txt', process.pid);
7 7  
  8 +const config = require('komodo-sdk/config');
  9 +process.title = `KOMODO-${(config && typeof config.name === 'string') ? config.name.toUpperCase() : 'SMS'}`;
  10 +
  11 +
8 12 require('./lib/transport');
9 13 require('./lib/handler-callback-server');
10 14 \ No newline at end of file
1 1 {
2 2 "name": "komodo-center-sms",
3   - "version": "0.9.1",
  3 + "version": "0.9.2",
4 4 "lockfileVersion": 1,
5 5 "requires": true,
6 6 "dependencies": {
1 1 {
2 2 "name": "komodo-center-sms",
3   - "version": "0.9.1",
  3 + "version": "0.9.2",
4 4 "description": "SMS center for Komodo",
5 5 "main": "index.js",
6 6 "scripts": {