mirror of
https://github.com/warengroup/eximiabots-radiox.git
synced 2024-11-09 23:00:18 +00:00
28 lines
754 B
JavaScript
28 lines
754 B
JavaScript
require('dotenv/config');
|
||
|
||
module.exports = {
|
||
|
||
//credentials
|
||
token: process.env.DISCORD_TOKEN,
|
||
|
||
//radio stations
|
||
stationslistUrl: process.env.RADIOX_STATIONSLISTURL || "https://gitea.cwinfo.org/cwchristerw/radio/raw/branch/master/playlist.json",
|
||
|
||
//support
|
||
supportGuild: "https://discord.gg/rRA65Mn",
|
||
devId: [
|
||
"493174343484833802",
|
||
"360363051792203779"
|
||
],
|
||
|
||
//misc
|
||
embedColor: "#88aa00",
|
||
invite: "https://discordapp.com/api/oauth2/authorize?client_id=684109535312609409&permissions=3427328&scope=bot",
|
||
hostedBy: "[Warén Group](https://waren.io)",
|
||
|
||
//Settings
|
||
prefix: process.env.RADIOX_PREFIX || "rx-",
|
||
version: process.env.RADIOX_VERSION || process.env.npm_package_version
|
||
|
||
}
|