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.
18 lines
316 B
18 lines
316 B
var config = {
|
|
PORT: 8001,
|
|
POLL_INTERVAL: 10000,
|
|
|
|
//CTL_SOCKET: "rtbwn.sock",
|
|
|
|
URL_BASE: "/rtbw",
|
|
|
|
PYTHON_EXECUTABLE: "python3",
|
|
RTBWCTL_FILENAME: "./backend/rtbwctl.py",
|
|
BACKEND_SOCKET: "./backend/rtbw.sock",
|
|
|
|
BUFFER_PURGE_TIME: 1800000, //30 minutes
|
|
SUPERBUFFER_SIZE: 24
|
|
};
|
|
|
|
module.exports = config;
|