2016-10-09 19:14:02 +00:00
|
|
|
"use strict";
|
|
|
|
|
2022-06-19 00:25:21 +00:00
|
|
|
import config from "../../../defaults/config.js";
|
2015-09-28 20:32:50 +00:00
|
|
|
|
2021-05-26 11:41:33 +00:00
|
|
|
config.defaults.name = "Example IRC Server";
|
|
|
|
config.defaults.host = "irc.example.com";
|
2017-08-23 05:23:24 +00:00
|
|
|
config.public = true;
|
2015-09-28 20:32:50 +00:00
|
|
|
config.prefetch = true;
|
2022-06-19 00:25:21 +00:00
|
|
|
// @ts-ignore
|
2016-12-23 11:50:11 +00:00
|
|
|
config.host = config.bind = "127.0.0.1";
|
|
|
|
config.port = 61337;
|
|
|
|
config.transports = ["websocket"];
|
2015-09-28 20:32:50 +00:00
|
|
|
|
|
|
|
module.exports = config;
|