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

14 lines
313 B
JavaScript
Raw Normal View History

"use strict";
2022-05-15 00:18:06 +02:00
import config from "../../../defaults/config.js";
2015-09-28 22:32:50 +02:00
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;
2022-05-15 00:18:06 +02:00
config.host = bind = "127.0.0.1";
2016-12-23 12:50:11 +01:00
config.port = 61337;
config.transports = ["websocket"];
2015-09-28 22:32:50 +02:00
2022-05-15 00:18:06 +02:00
export default config;