More actions
No edit summary |
No edit summary |
||
(10 intermediate revisions by the same user not shown) | |||
Line 10: | Line 10: | ||
| site = https://git.swee.codes/SweeZero/SweeBridge | | site = https://git.swee.codes/SweeZero/SweeBridge | ||
}} | }} | ||
'''SweeBridge''' is an All-in-One bridge that is easy to self-host with a JSON configuration and Environment | '''SweeBridge''' is an All-in-One bridge that is easy to self-host with a JSON configuration and Environment variables. | ||
Swee originally made SweeBridge for bridging the [[ | Swee originally made SweeBridge for bridging the [[SweeZero]] Guilded server to the Libera.Chat channel. | ||
== Configuration == | == Configuration == | ||
Line 23: | Line 23: | ||
Copy the URL, and edit the config.json accordingly (You can get channel and guild ID by using b$chandetails or looking at the URL) <syntaxhighlight lang="json" line="1"> | Copy the URL, and edit the config.json accordingly (You can get channel and guild ID by using b$chandetails or looking at the URL) <syntaxhighlight lang="json" line="1"> | ||
{ | { | ||
"CommunityName": { | "sbconfig": { | ||
"CommunityName": { | |||
"discord": { | |||
"guild": 1337, | |||
"channel": 1337, | |||
"webhook": "webhook_url" | |||
} | |||
} | } | ||
} | } | ||
Line 40: | Line 42: | ||
Copy the URL, and edit the config.json accordingly (You can get channel and server ID by using b$chandetails or looking at the URL)<syntaxhighlight lang="json" line="1"> | Copy the URL, and edit the config.json accordingly (You can get channel and server ID by using b$chandetails or looking at the URL)<syntaxhighlight lang="json" line="1"> | ||
{ | { | ||
"CommunityName": { | "sbconfig": { | ||
"CommunityName": { | |||
"guilded": { | |||
"server": "server_id", | |||
"channel": "channel_id", | |||
"webhook": "webhook_url" | |||
} | |||
} | } | ||
} | } | ||
Line 51: | Line 55: | ||
=== IRC === | === IRC === | ||
You must invite SweeBridge to your channel (Libera.Chat is used as an example)<syntaxhighlight> | You must invite SweeBridge to your channel (Libera.Chat is used as an example)<syntaxhighlight lang="text"> | ||
/invite SweeBridge #somechannel | /invite SweeBridge #somechannel | ||
</syntaxhighlight>Edit the config.json accordingly:<syntaxhighlight lang="json" line="1"> | </syntaxhighlight>Edit the config.json accordingly:<syntaxhighlight lang="json" line="1"> | ||
{ | { | ||
"CommunityName": { | "sbconfig": { | ||
"CommunityName": { | |||
"libera": { | |||
"channel": "#somechannel", | |||
"flags": { | |||
"nosystem": "disable" | |||
} | |||
} | } | ||
} | } | ||
Line 67: | Line 73: | ||
=== Matrix === | === Matrix === | ||
You must invite | You must invite @bridge:swee.codes to your room (DO NOT ENCRYPT YOUR ROOM), then edit the config.json accordingly:<syntaxhighlight lang="json" line="1"> | ||
{ | { | ||
"CommunityName": { | "sbconfig": { | ||
"CommunityName": { | |||
"matrix": { | |||
"room": "!room_ID:matrix.example.com" | |||
} | |||
} | } | ||
} | } | ||
} | } | ||
</syntaxhighlight> | </syntaxhighlight> | ||
== How do I get my community on the default instance? == | |||
You should follow the webhook steps above, there will be links to invite the default SweeBridge to your community on the [https://git.swee.codes/SweeZero/SweeBridge#get-your-community-bridged-with-default-sweebridge README.md] and links to contact Swee once you are ready. |
Latest revision as of 05:11, 26 February 2025
![]() SweeBridge logo | |
Released | July 18 2024 |
---|---|
Language | Python |
Platform(s) | Linux - Chat platforms shown in website. |
License | MIT |
Created by | Swee |
Website | https://git.swee.codes/SweeZero/SweeBridge |
SweeBridge is an All-in-One bridge that is easy to self-host with a JSON configuration and Environment variables.
Swee originally made SweeBridge for bridging the SweeZero Guilded server to the Libera.Chat channel.
Configuration
Discord
You must invite the SweeBridge bot to your guild and add a webhook to the channels.
Edit Channel -> Integrations -> Webhooks -> New Webhook

Copy the URL, and edit the config.json accordingly (You can get channel and guild ID by using b$chandetails or looking at the URL)
{
"sbconfig": {
"CommunityName": {
"discord": {
"guild": 1337,
"channel": 1337,
"webhook": "webhook_url"
}
}
}
}
Guilded
You must invite the SweeBridge bot to your server and add a webhook to the channels.
Channel Settings -> Webhooks -> Create a webhook

Copy the URL, and edit the config.json accordingly (You can get channel and server ID by using b$chandetails or looking at the URL)
{
"sbconfig": {
"CommunityName": {
"guilded": {
"server": "server_id",
"channel": "channel_id",
"webhook": "webhook_url"
}
}
}
}
IRC
You must invite SweeBridge to your channel (Libera.Chat is used as an example)
/invite SweeBridge #somechannel
Edit the config.json accordingly:
{
"sbconfig": {
"CommunityName": {
"libera": {
"channel": "#somechannel",
"flags": {
"nosystem": "disable"
}
}
}
}
}
Check the SweeBridge nosystem values if you need to do so.
Matrix
You must invite @bridge:swee.codes to your room (DO NOT ENCRYPT YOUR ROOM), then edit the config.json accordingly:
{
"sbconfig": {
"CommunityName": {
"matrix": {
"room": "!room_ID:matrix.example.com"
}
}
}
}
How do I get my community on the default instance?
You should follow the webhook steps above, there will be links to invite the default SweeBridge to your community on the README.md and links to contact Swee once you are ready.