-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env.example
49 lines (40 loc) · 2.38 KB
/
.env.example
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
# Discord bot token / Discord bot token'ı
DISCORD_TOKEN=your_token_here
# User IDs to track (comma separated) / Takip edilecek kullanıcı ID'leri (virgülle ayrılmış)
# Example / Örnek: 123456789,987654321,456789123
TARGET_USER_IDS=id1,id2,id3
# Debug mode (0: off, 1: on) / Debug modu (0: kapalı, 1: açık)
# Detailed logs will be written to console in debug mode / Debug modunda konsola detaylı loglar yazılır
DEBUG_MODE=1
# Check interval (in milliseconds) / Kontrol aralığı (milisaniye cinsinden)
# 5000 = 5 seconds / 5000 = 5 saniye
# Recommended minimum value / Önerilen minimum değer: 3000 (3 seconds/saniye)
CHECK_INTERVAL=5000
# Server ID where messages will be sent / Mesajların gönderileceği sunucu ID'si
# Example: Right click on server and select "Copy ID" / Örnek: Sunucuya sağ tıklayıp "ID'yi Kopyala" seçeneğini kullanabilirsiniz
GUILD_ID=12345678901234
# Channel ID where messages will be sent / Mesajların gönderileceği kanal ID'si
# Example: Right click on channel and select "Copy ID" / Örnek: Kanala sağ tıklayıp "ID'yi Kopyala" seçeneğini kullanabilirsiniz
CHANNEL_ID=12345678901234
# Language selection (tr: Turkish, en: English) / Dil seçimi (tr: Türkçe, en: İngilizce)
# Default / Varsayılan: tr
LANGUAGE=tr
# Important Notes / Önemli Notlar:
# - Keep your TOKEN secret / TOKEN değerinizi gizli tutun
# - Don't set CHECK_INTERVAL too low (Discord rate limit) / CHECK_INTERVAL değerini çok düşük ayarlamayın (Discord limit)
# - DEBUG_MODE can be kept on during development / DEBUG_MODE geliştirme sürecinde açık tutulabilir
# - Make sure GUILD_ID and CHANNEL_ID are correct / GUILD_ID ve CHANNEL_ID değerlerinin doğru olduğundan emin olun
# - You can add multiple users in TARGET_USER_IDS using commas / TARGET_USER_IDS'e virgül kullanarak birden fazla kullanıcı ekleyebilirsiniz
# How to use / Kullanım:
# 1. Copy this file as .env / Bu dosyayı .env olarak kopyalayın
# 2. Fill in your values / Değerlerinizi girin
# 3. Make sure all IDs are correct / Tüm ID'lerin doğru olduğundan emin olun
# 4. Keep your .env file secure / .env dosyanızı güvende tutun
# Example values / Örnek değerler:
# DISCORD_TOKEN=MTk4NzM0NjI3MTQ2MTI5OTIw.Gh7Jks.aBcDeFgHiJkLmNoPqRsTuVwXyZ12345
# TARGET_USER_IDS=123456789012345678,987654321098765432
# DEBUG_MODE=1
# CHECK_INTERVAL=5000
# GUILD_ID=123456789012345678
# CHANNEL_ID=123456789012345678
# LANGUAGE=tr