-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenv.example
More file actions
31 lines (24 loc) · 925 Bytes
/
env.example
File metadata and controls
31 lines (24 loc) · 925 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
# GitHub Container Registry (for docker-compose)
GITHUB_REPOSITORY=your-username/turki
VERSION=latest
# Telegram Bot Token (required)
# Get it from @BotFather on Telegram
BOT_TOKEN=PUT_YOUR_TOKEN_HERE
# Database connection (Postgres)
DB_URL=jdbc:postgresql://localhost:5432/turki
DB_USER=turki
DB_PASSWORD=CHANGE_THIS_PASSWORD
# Admin panel authentication (required for admin)
ADMIN_USER=admin
ADMIN_PASSWORD=CHANGE_THIS_PASSWORD
# Support chat ID for receiving user messages
# Get your chat ID by messaging @userinfobot or @RawDataBot
SUPPORT_CHAT_ID=YOUR_TELEGRAM_ID
# Stats chat ID for receiving daily reports and error alerts
# Can be the same as SUPPORT_CHAT_ID or a different group/channel
STATS_CHAT_ID=YOUR_STATS_CHAT_ID
# Error chat ID for real-time error notifications
# Dedicated channel for instant error alerts (optional)
ERROR_CHAT_ID=YOUR_ERROR_CHAT_ID
# Server port (optional, default: 8080)
PORT=8080