dd05ee3a65
Co-authored-by: Eric Nemchik <eric@nemchik.com> Co-authored-by: Pavel Djundik <xPaw@users.noreply.github.com>
15 lines
336 B
JavaScript
15 lines
336 B
JavaScript
"use strict";
|
|
|
|
import config from "../../../defaults/config.js";
|
|
|
|
config.defaults.name = "Example IRC Server";
|
|
config.defaults.host = "irc.example.com";
|
|
config.public = true;
|
|
config.prefetch = true;
|
|
// @ts-ignore
|
|
config.host = config.bind = "127.0.0.1";
|
|
config.port = 61337;
|
|
config.transports = ["websocket"];
|
|
|
|
module.exports = config;
|