Add support for alternate instances

This commit is contained in:
Declan Chidlow 2024-08-15 15:22:06 +08:00
parent 2df936f0bb
commit 3e5cf70f9e
3 changed files with 4 additions and 3 deletions

View file

@ -11,8 +11,8 @@
DB_PASS=
# Base URL of the Revolt API to connect to.
# Defaults to https://api.revolt.chat
API_URL=
# Defaults to https://revolt.chat/api
REVOLT_API_URL=
# Your bot account's token.
BOT_TOKEN=

View file

@ -16,6 +16,7 @@ logger.info('Initializing client');
let db = MongoDB();
let client = new AutomodClient({
autoReconnect: true,
baseURL: process.env['REVOLT_API_URL'] || "https://revolt.chat/api",
}, db);
login(client);

View file

@ -23,7 +23,7 @@ services:
- BOT_METRICS_MSG_PING_CHANNEL
- BOT_STATUS
- BOT_STATUS_INTERVAL
- API_URL
- REVOLT_API_URL
# Uncomment if you enabled Prometheus metrics
#ports:
# - 127.0.0.1:${BOT_METRICS_PORT}:${BOT_METRICS_PORT}