feat: webpage toggle, sound notification, fix evga links (#52)

Co-authored-by: Evan Gentis <evan.gentis@gmail.com>
Co-authored-by: Jef LeCompte <jeffreylec@gmail.com>
This commit is contained in:
Evan Gentis
2020-09-19 10:42:40 -04:00
committed by GitHub
parent 25643c4870
commit a21740942b
11 changed files with 89 additions and 5 deletions
+6 -2
View File
@@ -23,7 +23,8 @@ const notifications = {
channel: process.env.SLACK_CHANNEL ?? '',
token: process.env.SLACK_TOKEN ?? ''
},
test: process.env.NOTIFICATION_TEST ?? 'false'
test: process.env.NOTIFICATION_TEST ?? 'false',
playSound: process.env.PLAY_SOUND ?? 'false'
};
const page = {
@@ -38,9 +39,12 @@ const rateLimitTimeout = Number(process.env.RATE_LIMIT_TIMEOUT) ?? 5000;
const stores = process.env.STORES ?? 'nvidia';
const openBrowser = process.env.OPEN_BROWSER ?? 'true';
export const Config = {
notifications,
rateLimitTimeout,
page,
stores
stores,
openBrowser
};