merged private server and console to private-cloud
This commit is contained in:
28
console/configuration/system_configs.js
Normal file
28
console/configuration/system_configs.js
Normal file
@@ -0,0 +1,28 @@
|
||||
//noinspection JSUnresolvedFunction
|
||||
/**
|
||||
* Created by strawmanbobi
|
||||
* 2014-10-17
|
||||
*/
|
||||
|
||||
//noinspection JSUnresolvedFunction
|
||||
require('../mini_poem/configuration/constants');
|
||||
//noinspection JSUnresolvedFunction
|
||||
var Enums = require('./../constants/enums');
|
||||
var enums = new Enums();
|
||||
|
||||
//noinspection JSUnresolvedVariable
|
||||
exports.setupEnvironment = function () {
|
||||
MYSQL_DB_SERVER_ADDRESS = "localhost";
|
||||
MYSQL_DB_NAME = "irext";
|
||||
MYSQL_DB_USER = "root";
|
||||
MYSQL_DB_PASSWORD = "root";
|
||||
REDIS_HOST = "localhost";
|
||||
REDIS_PORT = "6379";
|
||||
REDIS_PASSWORD = null;
|
||||
FILE_TEMP_PATH = require('os').homedir() + "/rc_extension";
|
||||
PYTHON_PATH = "/usr/bin/python";
|
||||
LISTEN_PORT = "8301";
|
||||
SERVER_ADDRESS = "localhost";
|
||||
EXTERNAL_SERVER_ADDRESS = "irext.net";
|
||||
EXTERNAL_SERVER_PORT = "80";
|
||||
};
|
||||
Reference in New Issue
Block a user