Commit 89c79031c9c026835f3a6737db77cfa2698ee1cd

Authored by Adhidarma Hadiwinoto
1 parent 94ef6ed1af
Exists in master

pake node-sate24

Showing 2 changed files with 4 additions and 3 deletions Inline Diff

1 var iniparser = require('iniparser'); 1 var iniparser = require('iniparser');
2 var config = iniparser.parseSync('./config.ini'); 2 var config = iniparser.parseSync('./config.ini');
3 3
4 var aaaHost = config.globals.aaa_host; 4 var aaaHost = config.globals.aaa_host;
5 5
6 HttpServer = require('./httpserver.js'); 6 HttpServer = require('sate24/httpserver.js');
7 var httpServer = HttpServer.start(config); 7 var httpServer = HttpServer.start(config);
8 8
9 var aaa = require('./aaa.js'); 9 var aaa = require('sate24/aaa.js');
10 var partner = require('./partner-scrappingkisel.js'); 10 var partner = require('./partner-scrappingkisel.js');
11 11
12 partner.start(config, aaa.callbackReport); 12 partner.start(config, aaa.callbackReport);
13 aaa.start(config, partner); 13 aaa.start(config, partner);
14 14
1 { 1 {
2 "name": "sate24-to-kisel", 2 "name": "sate24-to-kisel",
3 "version": "0.0.1", 3 "version": "0.0.1",
4 "description": "ST24 to Kisel H2H OUT", 4 "description": "ST24 to Kisel H2H OUT",
5 "main": "index.js", 5 "main": "index.js",
6 "scripts": { 6 "scripts": {
7 "test": "mocha" 7 "test": "mocha"
8 }, 8 },
9 "repository": { 9 "repository": {
10 "type": "git", 10 "type": "git",
11 "url": "git@gitlab.kodesumber.com:reload97/sate24-to-kisel.git" 11 "url": "git@gitlab.kodesumber.com:reload97/sate24-to-kisel.git"
12 }, 12 },
13 "keywords": [ 13 "keywords": [
14 "st24", 14 "st24",
15 "reload97", 15 "reload97",
16 "ppob", 16 "ppob",
17 "h2h", 17 "h2h",
18 "m2m", 18 "m2m",
19 "xmlrpc" 19 "xmlrpc"
20 ], 20 ],
21 "author": "Adhidarma Hadiwinoto <gua@adhisimon.org>", 21 "author": "Adhidarma Hadiwinoto <gua@adhisimon.org>",
22 "license": "BSD", 22 "license": "BSD",
23 "dependencies": { 23 "dependencies": {
24 "mocha": "~2.2.5", 24 "mocha": "~2.2.5",
25 "request": "~2.57.0", 25 "request": "~2.57.0",
26 "strftime": "~0.9.2", 26 "strftime": "~0.9.2",
27 "iniparser": "~1.0.5", 27 "iniparser": "~1.0.5",
28 "mathjs": "~1.7.0", 28 "mathjs": "~1.7.0",
29 "xmlrpc": "~1.3.1", 29 "xmlrpc": "~1.3.1",
30 "xml2js": "~0.4.9", 30 "xml2js": "~0.4.9",
31 "redis": "~0.12.1", 31 "redis": "~0.12.1",
32 "hiredis": "~0.4.0", 32 "hiredis": "~0.4.0",
33 "node-simple-router": "~0.9.4-2" 33 "node-simple-router": "~0.9.4-2",
34 "sate24": "git+http://git@gitlab.kodesumber.com/reload97/node-sate24.git"
34 } 35 }
35 } 36 }
36 37