eximiabots-radiox/src/config.js

27 lines
636 B
JavaScript
Raw Normal View History

2020-03-08 14:22:00 +00:00
require('dotenv/config');
module.exports = {
2020-03-12 09:59:05 +00:00
2020-03-08 14:22:00 +00:00
//credentials
2020-03-12 09:59:05 +00:00
token: process.env.DISCORD_TOKEN,
//radio stations
stationslistUrl: process.env.RADIOX_STATIONSLISTURL || "https://gitea.cwinfo.org/cwchristerw/radio/raw/branch/master/playlist.json",
2020-03-08 14:22:00 +00:00
//support
supportGuild: "https://discord.gg/rRA65Mn",
devId: [
"493174343484833802",
"360363051792203779"
],
2020-03-12 09:59:05 +00:00
2020-03-08 14:22:00 +00:00
//misc
embedColor: "#88aa00",
2020-08-25 10:50:39 +00:00
hostedBy: "[Warén Group](https://waren.io)",
2020-03-12 09:59:05 +00:00
2020-03-08 14:22:00 +00:00
//Settings
prefix: process.env.RADIOX_PREFIX || "rx-",
2020-08-25 10:50:39 +00:00
version: process.env.RADIOX_VERSION || process.env.npm_package_version
2020-03-08 14:22:00 +00:00
2020-03-11 22:39:08 +00:00
}