From 1ea363c45ecf1a5bbdab7d10837b7bad7952324b Mon Sep 17 00:00:00 2001 From: Sarimoko Date: Thu, 10 Feb 2022 03:51:59 +0000 Subject: [PATCH] Add 'www/template.config.js' --- www/template.config.js | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 www/template.config.js diff --git a/www/template.config.js b/www/template.config.js new file mode 100644 index 0000000..d6b831c --- /dev/null +++ b/www/template.config.js @@ -0,0 +1,19 @@ +let options = { + options: { + debug: true + }, + connection: { + secure: true, + reconnect: true + }, + identity: { + username: "Sariboto", + password: "oauth:XXXX" + }, + channels: [ "#sarimoko" ] +}; + +let client = new tmi.client(options); + +// Connect the client to the server.. +client.connect(); \ No newline at end of file