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",
|
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
|
2021-08-18 22:50:45 +00:00
|
|
|
|
version: process.env.RADIOX_VERSION || process.env.npm_package_version,
|
2021-09-09 15:54:51 +00:00
|
|
|
|
debug: process.env.DEBUG_MODE || false,
|
|
|
|
|
maintenance: false
|
2021-09-09 09:44:50 +00:00
|
|
|
|
}
|