-
Notifications
You must be signed in to change notification settings - Fork 77
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Nandan Sridhar
committed
Sep 25, 2017
1 parent
b42f5e4
commit 48626e6
Showing
8 changed files
with
87 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,3 +8,4 @@ Kevin Swiber <[email protected]> (https://github.com/kevinswiber) | |
Mitch Fierro (https://github.com/F1ERRO) | ||
Matt Dobson <[email protected]> (https://github.com/mdobson) | ||
Frank Greco (https://github.com/frankgreco) | ||
Srinandan Sridhar <[email protected]> (https://github.com/srinandan) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
'use strict'; | ||
|
||
var forever = require('forever-monitor'); | ||
try { | ||
var foreverOptions = require(__dirname+'/forever.json'); | ||
} catch (err) { | ||
console.error(err); | ||
console.log("using default forever options"); | ||
var foreverOptions = { max: 3, silent: false, killTree: true, minUptime: 2000 }; | ||
} | ||
|
||
var child = new (forever.Monitor)(__dirname+'/app.js', foreverOptions); | ||
|
||
child.start(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"silent": false, | ||
"killTree": true, | ||
"minUptime": 2000, | ||
"max": 3 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "edgemicro", | ||
"version": "2.5.4-beta", | ||
"version": "2.5.6-beta", | ||
"description": "Apigee Edge Microgateway", | ||
"main": "index.js", | ||
"license": "Apache-2.0", | ||
|
@@ -16,6 +16,7 @@ | |
"config": "^1.13.0", | ||
"cpr": "^1.0.0", | ||
"debug": "^2.2.0", | ||
"forever-monitor": "^1.7.1", | ||
"fs-extra": "^0.20.1", | ||
"js-yaml": "^3.5.4", | ||
"jsonwebtoken": "^5.7.0", | ||
|
@@ -26,12 +27,12 @@ | |
"microgateway-edgeauth": "^2.3.0-beta", | ||
"microgateway-plugins": "^2.3.12-beta", | ||
"pem": "^1.8.1", | ||
"portastic": "^1.0.1", | ||
"request": "^2.67.0", | ||
"rimraf": "^2.4.3", | ||
"tmp": "0.0.28", | ||
"uuid": "^2.0.1", | ||
"xml2js": "^0.4.16", | ||
"portastic": "^1.0.1" | ||
"xml2js": "^0.4.16" | ||
}, | ||
"devDependencies": { | ||
"gulp": "^3.8.11", | ||
|
@@ -81,12 +82,16 @@ | |
"Shawn Feldman (https://github.com/shawnfeldman)", | ||
"Kevin Swiber <[email protected]> (https://github.com/kevinswiber)", | ||
"Matt Dobson <[email protected]> (https://github.com/mdobson)", | ||
"Mitch Fierro <[email protected]> (https://github.com/f1erro)" | ||
"Mitch Fierro <[email protected]> (https://github.com/f1erro)", | ||
"Srinandan Sridhar <[email protected]> (https://github.com/srinandan)" | ||
], | ||
"author": "Kevin Swiber <[email protected]>", | ||
"engines" : { | ||
"node" : ">= 4.8.2", | ||
"npm": ">=3.10.8" | ||
"engines": { | ||
"node": ">= 4.8.4", | ||
"npm": ">=3.10.8" | ||
}, | ||
"cpu" : [ "!arm", "!mips" ] | ||
"cpu": [ | ||
"!arm", | ||
"!mips" | ||
] | ||
} |