bridge bot api for discord servers
Go to file
2022-03-25 22:14:29 +02:00
frontend refactor code and add token handoff 2022-02-25 19:56:10 +02:00
scripts kill server child process on various signals 2022-03-12 18:04:18 +02:00
src add untested attestation feature 2022-03-25 22:14:29 +02:00
.gitignore Initial commit. 2022-02-01 00:01:11 +02:00
LICENSE fix super tokens and add minecraft server bridge 2022-02-11 15:20:59 +02:00
package.json refactor code and add token handoff 2022-02-25 19:56:10 +02:00
README.md improve client config and fix reconnect token bug 2022-02-07 16:14:43 +02:00
yarn.lock refactor code and add token handoff 2022-02-25 19:56:10 +02:00

bridge

bridge is an extensible program that allows bridging various chat applications, providing an API that bridge clients can use. Currently, it only supports bridging Discord to the bridge API.

Install

node and npm are required. yarn is recommended instead of npm. (If using yarn, replace occurrences of npm with yarn)

npm install

Before running it, you will probably want to edit the server's config.js to match the Discord guilds you'd like to bridge or change other settings.

Then, to run it:

DISCORD_TOKEN="your discord token" JWT_SECRET="jwt secret" node index.js

Building the frontend

You may also want to build the frontend web application.

First, install the dependencies:

cd frontend
npm install

Then, open src/config.js in your editor and update the values to match where you're hosting the bridge's http server. You may use a reverse proxy such as NGINX. If you just want to run and use it locally, the defaults are fine.

Once you're done tweaking the configuration, you can build it:

npm run build

Notice

This software may break the ToS of certain chat applications that do not allow bridging (either directly or indirectly). It is only for educational purposes and I am not responsible for any damage caused.