forked from PartMan7/PartBot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.js
27 lines (23 loc) · 999 Bytes
/
config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
const debug = false;
exports.prefix = 'PREFIX_HERE';
exports.webPort = 8080;
exports.avatar = 'supernerd';
exports.nickName = 'USERNAME_HERE';
exports.pass = 'PASSWORD_HERE';
exports.token = 'DISCORD_TOKEN_HERE'; // leave blank to disable Discord
exports.autoJoin = debug ? ['botdevelopment'] : ['botdevelopment']; // The second is the rooms to be joined normally
exports.status = false; // Set to a string if you want a status
exports.ignoreRooms = []; // Will be phased out
exports.websiteLink = `http://localhost:${exports.webPort}`; // Local address; IP addresses and hosted domains both work
exports.logRooms = []; // Do NOT use this without permission from a room owner
exports.owner = 'YOUR_USERNAME_HERE';
exports.discordAdmins = ['ADMIN_ID']; // Array of Discord IDs of administrators
exports.auth = {
admin: ['ADMIN_USERID_HERE'],
coder: [],
alpha: [],
beta: [],
gamma: [],
locked: []
};
exports.mongoURL = `mongodb://localhost:27017/PartBot`; // Put in a valid MongoDB URL here