CHANGE DEFAULT PORT TO 8765

This commit is contained in:
Mark Nadal
2018-07-30 08:53:00 -07:00
parent 0437235f3d
commit d65e2c3f88
45 changed files with 603 additions and 52 deletions

View File

@@ -1,5 +1,5 @@
module.exports = function(port, file, cb, inject){
port = port || process.env.OPENSHIFT_NODEJS_PORT || process.env.VCAP_APP_PORT || process.env.PORT || process.argv[2] || 8080;
port = port || process.env.OPENSHIFT_NODEJS_PORT || process.env.VCAP_APP_PORT || process.env.PORT || process.argv[2] || 8765;
var fs = require('fs');
var Gun = require(__dirname+'/../../');