ℹ️ Slack removed their IRC/XMPP gateway's in 2018, so this tool unfortunately doesn't work anymore. It was replaced with a N8N instance unsing the webhook system of both discord and slack to connect both services as best as possible ℹ️
A Dokku-deployable slack-irc bridge.
On the Dokku server:
# create the app
dokku apps:create slackebot
# configure the app
dokku config:set CHANNEL_MAPPING="VALUE"
dokku config:set IRC_AUTOSEND_COMMANDS="VALUE"
dokku config:set IRC_BOT_NAME="VALUE"
dokku config:set IRC_FLOOD_PROTECTION="VALUE"
dokku config:set IRC_FLOOD_PROTECTION_DELAY="VALUE"
dokku config:set IRC_SERVER="VALUE"
dokku config:set SLACK_BOT_TOKEN="VALUE"On your local computer:
# add the remote
git remote add dokku dokku@SERVER_IP:slackebot
# push the app
git push dokku master