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,
|
2020-03-22 15:10:46 +00:00
|
|
|
|
2020-08-15 00:16:58 +00:00
|
|
|
//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",
|
|
|
|
invite: "https://discordapp.com/api/oauth2/authorize?client_id=684109535312609409&permissions=3427328&scope=bot",
|
2020-03-12 09:59:05 +00:00
|
|
|
|
2020-03-08 14:22:00 +00:00
|
|
|
//Settings
|
2020-08-15 00:16:58 +00:00
|
|
|
prefix: process.env.RADIOX_PREFIX || "rx-",
|
2020-03-08 14:22:00 +00:00
|
|
|
|
2020-03-11 22:39:08 +00:00
|
|
|
}
|