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

15 lines
336 B
JavaScript
Raw Normal View History

"use strict";
import config from "../../../defaults/config.js";
2015-09-28 16:32:50 -04:00
2021-05-26 07:41:33 -04:00
config.defaults.name = "Example IRC Server";
config.defaults.host = "irc.example.com";
config.public = true;
2015-09-28 16:32:50 -04:00
config.prefetch = true;
// @ts-ignore
2016-12-23 06:50:11 -05:00
config.host = config.bind = "127.0.0.1";
config.port = 61337;
config.transports = ["websocket"];
2015-09-28 16:32:50 -04:00
module.exports = config;