-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.ts
More file actions
38 lines (30 loc) · 736 Bytes
/
config.ts
File metadata and controls
38 lines (30 loc) · 736 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
import dotenv from "dotenv";
dotenv.config();
/*
TWITCH CONFIGS
*/
export const TWITCH_OAUTH_PASS = process.env.TWITCH_OAUTH_PASS;
export const TWITCH_YOUR_USERNAME = process.env.TWITCH_YOUR_USERNAME;
export const TWITCH_WEBSOCKET_URL = "wss://irc-ws.chat.twitch.tv:443";
/*
SPAM CONFIGS
*/
export const SPAM_MAX_MSG = 1;
export const SPAM_TIMEOUT_SECONDS = 10;
export const SPAM_CHECK_SECONDS = 5;
/*
CHANNELS TO WATCH
*/
export const CHANNELS_DEST: Array<string> = ["flaviojmendes"];
/*
DEEP AI
*/
export const DEEPAI_API_KEY = process.env.DEEPAI_API_KEY || "";
/*
CHAT GPT
*/
export const OPENAPI_KEY = process.env.OPENAPI_KEY || "";
/*
CHAT GPT
*/
export const REPLICATE_KEY = process.env.REPLICATE_KEY || "";