colorbot-twitch/colorbot.config.js
Manuel eec98d7e5c
Properly exit program and use hex instead of hsl
* Properly exit on Ctrl+C and termination signal
* Define default username color and calculate HSL from this hex value
2021-03-22 07:42:11 +01:00

16 lines
292 B
JavaScript

module.exports = {
apps : [
{
name: "colorbot-twitch",
script: "./index.js",
watch: true,
env: {
"TWITCH_BOT_KEY": "",
"TWITCH_BOT_USERNAME": "",
"TWITCH_BOT_COLOR_MODE": "loop",
"TWITCH_BOT_INTERVAL": 10,
"TWITCH_BOT_DEFAULT_COLOR": "F1C40F"
}
}
]
}