You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
332 B
16 lines
332 B
6 years ago
|
var config = {
|
||
|
PORT: 8001,
|
||
|
POLL_INTERVAL: 10000,
|
||
|
|
||
|
URL_BASE: "/rtbw",
|
||
|
|
||
|
PYTHON_EXECUTABLE: "python3",
|
||
|
RTBWCTL_FILENAME: "./backend/rtbwctl.py",
|
||
|
BACKEND_SOCKET: "./backend/rtbw.sock",
|
||
|
|
||
|
BUFFER_PURGE_TIME: 300000,//20000,//300000, //5 minutes
|
||
|
SUPERBUFFER_PURGE_TIME: 3000000//3000000 //50 minutes
|
||
|
};
|
||
|
|
||
|
module.exports = config;
|