-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
59 lines (48 loc) · 2.02 KB
/
.env.example
File metadata and controls
59 lines (48 loc) · 2.02 KB
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
# TikTok Streak API Configuration
# Created by: dewhush
#
# Copy this file to .env and fill in your values
# DO NOT commit .env to version control!
# =============================================================================
# Application Settings
# =============================================================================
APP_NAME=TikTok Streak API
APP_ENV=development
# =============================================================================
# API Authentication
# =============================================================================
# Generate a secure API key and set it here
API_KEY=your-secure-api-key-here
# =============================================================================
# Telegram Notifications
# =============================================================================
# Get your bot token from @BotFather on Telegram
TELEGRAM_BOT_TOKEN=your-telegram-bot-token
# Get your chat ID from @userinfobot or @get_id_bot on Telegram
TELEGRAM_CHAT_ID=your-telegram-chat-id
# Enable/disable Telegram notifications (true/false)
TELEGRAM_ENABLED=true
TELEGRAM_LOG_ENABLED=true
# Minimum log level to send to Telegram (INFO, WARNING, ERROR)
TELEGRAM_LOG_LEVEL=WARNING
# =============================================================================
# Bot Settings
# =============================================================================
# Default streak message
STREAK_MESSAGE=🔥 Streak Reminder 🔥 - Dew Bot
# Schedule time for automatic streak sending (24-hour format)
SCHEDULE_TIME=00:00
# =============================================================================
# Browser Settings
# =============================================================================
# Run browser in headless mode (true/false)
HEADLESS_MODE=false
# Wait times in seconds
PAGE_LOAD_WAIT=5
ELEMENT_WAIT=3
MESSAGE_SEND_DELAY=2
# =============================================================================
# Server Settings
# =============================================================================
HOST=0.0.0.0
PORT=8000