thelounge/test/fixtures/.thelounge/config.js

14 lines
325 B
JavaScript
Raw Normal View History

"use strict";
2015-09-28 22:32:50 +02:00
var config = require("../../../defaults/config.js");
2021-05-26 13:41:33 +02:00
config.defaults.name = "Example IRC Server";
config.defaults.host = "irc.example.com";
config.public = true;
2015-09-28 22:32:50 +02:00
config.prefetch = true;
2016-12-23 12:50:11 +01:00
config.host = config.bind = "127.0.0.1";
config.port = 61337;
config.transports = ["websocket"];
2015-09-28 22:32:50 +02:00
module.exports = config;