Update: I udpated the readme again I needed to delete a duplicate thingy and added a node badge at the top

This commit is contained in:
2025-09-21 20:37:44 +02:00
parent a7f19fbb4f
commit c14f258aad
2 changed files with 13 additions and 5 deletions

View File

@@ -1,3 +1,4 @@
![Node](https://img.shields.io/badge/node-20%2B-brightgreen)
# Discord-userbot-to-irc
A crappy group chat to a IRC room bridge written in node </3
@@ -97,8 +98,3 @@ You can easaily enable or disable the logging of messeges or the raw IRC info fo
- Make sure your Discord selfbot token is kept private.
- For secure IRC connections, ensure `tls: true` and correct port
# Warning:
I would not reccomend using this in a active room since that might get the bot/userbot rate limited on Discord OR IRC which is not good !
Also Using Userbots is against Discord's Terms of Service so your account/bot might get deactived. This has not happen yet but it is still possible.

12
docker-compose.yaml Normal file
View File

@@ -0,0 +1,12 @@
version: "3.8"
services:
discord-irc-bridge:
build: .
container_name: discord-irc-bridge
restart: unless-stopped
volumes:
- ./config.json:/app/config.json:ro
environment:
- NODE_ENV=production
tty: true