Browse Source

config file

master
zeus 4 years ago
parent
commit
7c7191c775
  1. 3
      swarmlab-app/src/run/app.js
  2. 11
      swarmlab-app/src/run/runconfig.js

3
swarmlab-app/src/run/app.js

@ -4,6 +4,7 @@ var pathmodule = require('path');
var app = require('express')();
var http = require('http').Server(app);
var https = require('https');
var CONFIG = require('./runconfig.js');
const io = require("socket.io")(http, {
// pingTimeout: 30000,
// allowUpgrades: false,
@ -291,7 +292,7 @@ cors(corsOptions), (req, res, next) => {
(async() => {
var mongourl = "mongodb://playgrounduser:efvvnuioervefSDFSGYGHRDFVsdfergvssppiiedifhwincvinviw_dbfjbsifbsdkjfswuunscfudfgbbfvibqefwrvnine@ondemand_playground_mongo1:27017,ondemand_playground_mongo2:27017,ondemand_playground_mongo3:27017,ondemand_playground_mongo4:27017,ondemand_playground_mongo5:27017,ondemand_playground_mongo6:27017,ondemand_playground_mongo7:27017/fluent?replicaSet=rs1"
var mongourl = "mongodb://"+CONFIG.mongo.user+":"+CONFIG.mongo.password+"@ondemand_playground_mongo1:27017,ondemand_playground_mongo2:27017,ondemand_playground_mongo3:27017,ondemand_playground_mongo4:27017,ondemand_playground_mongo5:27017,ondemand_playground_mongo6:27017,ondemand_playground_mongo7:27017/fluent?replicaSet=rs1"
const OPTS = {
useNewUrlParser: true,
useUnifiedTopology: true

11
swarmlab-app/src/run/runconfig.js

@ -0,0 +1,11 @@
var config = {};
config.mongo = {};
config.redis = {};
config.mongo.user = 'user'
config.mongo.password= 'pass'
config.redis.host = 'redisserver';
config.redis.port = 6379;
module.exports = config;
Loading…
Cancel
Save