mirror of
https://github.com/ckaczor/LaundryMonitor.git
synced 2026-02-16 10:58:35 -05:00
Move project to GitHub and hide Telegram config
This commit is contained in:
17
app/config.ts
Normal file
17
app/config.ts
Normal file
@@ -0,0 +1,17 @@
|
||||
import { IConfig } from './config.d';
|
||||
|
||||
class Config implements IConfig {
|
||||
port = 80;
|
||||
refreshInterval = 500;
|
||||
deviceDebounceInterval = 10000;
|
||||
|
||||
botToken = 'BOT-TOKEN';
|
||||
|
||||
chatId = 'CHAT-ID';
|
||||
debugChatId = 'DEBUG-CHAT-ID';
|
||||
|
||||
debug = false;
|
||||
enableTelegram = true;
|
||||
}
|
||||
|
||||
export const config = new Config();
|
||||
Reference in New Issue
Block a user