Move project to GitHub and hide Telegram config

This commit is contained in:
2018-03-26 15:39:27 -04:00
commit 74c384a652
26 changed files with 15047 additions and 0 deletions

17
app/config.ts Normal file
View 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();