mirror of
https://github.com/opelly27/streetmerchant.git
synced 2026-05-20 08:47:43 +00:00
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:
+6
-2
@@ -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
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user