@x-ray/core
Version:
X-Ray Core
16 lines • 642 B
JavaScript
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.UI_PORT = exports.UI_HOST = exports.SERVER_PORT = exports.SERVER_HOST = exports.WRITE_RESULT_CONCURRENCY = exports.SHORT_PATH_CONCURRENCY = void 0;
const SHORT_PATH_CONCURRENCY = 4;
exports.SHORT_PATH_CONCURRENCY = SHORT_PATH_CONCURRENCY;
const WRITE_RESULT_CONCURRENCY = 4;
exports.WRITE_RESULT_CONCURRENCY = WRITE_RESULT_CONCURRENCY;
const SERVER_HOST = 'localhost';
exports.SERVER_HOST = SERVER_HOST;
const SERVER_PORT = 3001;
exports.SERVER_PORT = SERVER_PORT;
const UI_HOST = 'localhost';
exports.UI_HOST = UI_HOST;
const UI_PORT = 3000;
exports.UI_PORT = UI_PORT;