6 Commits

Author SHA1 Message Date
Râu Cao
63f80a3fb2 0.8.1 2022-08-12 16:25:21 +01:00
Râu Cao
41008116d0 Update RS logger 2022-08-12 16:23:38 +01:00
a2d2f2eca1 Update rs-logger 2022-01-05 20:37:17 -06:00
6ba9b53c45 Update dev run script 2022-01-05 20:07:25 -06:00
5b2074c267 Switch to new node-irc branch and version
Contains a couple of fixes that haven't been merged upstream yet.
2022-01-05 20:06:48 -06:00
9595a53af7 Update RS logger 2021-11-13 22:07:58 +01:00
3 changed files with 2117 additions and 118 deletions

2222
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -1,6 +1,6 @@
{ {
"name": "botka", "name": "botka",
"version": "0.8.0", "version": "0.8.1",
"private": true, "private": true,
"author": [ "author": [
"Kosmos Contributors <mail@kosmos.org> (https://kosmos.org)" "Kosmos Contributors <mail@kosmos.org> (https://kosmos.org)"
@@ -13,9 +13,9 @@
"hubot-auth": "^1.2.0", "hubot-auth": "^1.2.0",
"hubot-help": "^1.0.1", "hubot-help": "^1.0.1",
"hubot-incoming-webhook": "^1.1.1", "hubot-incoming-webhook": "^1.1.1",
"hubot-irc": "github:67P/hubot-irc#dev", "hubot-irc": "github:67P/hubot-irc#deploy",
"hubot-redis-brain": "~1.0.0", "hubot-redis-brain": "~1.0.0",
"hubot-remotestorage-logger": "^1.0.0", "hubot-remotestorage-logger": "^1.3.0",
"hubot-web-push-notifications": "^1.2.0", "hubot-web-push-notifications": "^1.2.0",
"hubot-xmpp": "github:67P/hubot-xmpp#dev", "hubot-xmpp": "github:67P/hubot-xmpp#dev",
"request": "2.88.2" "request": "2.88.2"

7
run.sh
View File

@@ -3,10 +3,13 @@ PORT=4242 \
HUBOT_LOG_LEVEL="debug" \ HUBOT_LOG_LEVEL="debug" \
HUBOT_IRC_DEBUG="1" \ HUBOT_IRC_DEBUG="1" \
HUBOT_IRC_USESSL="1" \ HUBOT_IRC_USESSL="1" \
HUBOT_IRC_SERVER="irc.libera.chat" \ HUBOT_IRC_SERVER="znc.kosmos.org" \
HUBOT_IRC_PORT="6697" \ HUBOT_IRC_PORT="6697" \
HUBOT_IRC_USERNAME="botka/libera" \
HUBOT_IRC_PASSWORD="123abc" \
HUBOT_IRC_REALNAME="botka (kosmos)" \
HUBOT_IRC_ROOMS="#kosmos-random" \ HUBOT_IRC_ROOMS="#kosmos-random" \
HUBOT_IRC_NICK="botka_dev" \ HUBOT_IRC_NICK="botka" \
HUBOT_IRC_UNFLOOD="300" \ HUBOT_IRC_UNFLOOD="300" \
HUBOT_AUTH_ADMIN="bkero,gregkare,raucao" \ HUBOT_AUTH_ADMIN="bkero,gregkare,raucao" \
LOG_HTTP_PORT=7000 \ LOG_HTTP_PORT=7000 \