# Project: Telegram Bot
# Author: Molla Samser
# Designer & Tester: Rima Khatun
# Website: https://rskworld.in
# Contact: hello@rskworld.in | +91 93305 39277
# Address: Nutanhat, Mongolkote, Purba Burdwan, West Bengal, India, 713147
# Copyright: Â© 2026 RSK World. All rights reserved.

# ============================================
# REQUIRED CONFIGURATION
# ============================================

# Telegram Bot Configuration
# Get your bot token from @BotFather on Telegram
TELEGRAM_BOT_TOKEN=YOUR_BOT_TOKEN_HERE

# Admin User ID
# Get your user ID by messaging @userinfobot on Telegram
ADMIN_ID=123456789

# ============================================
# OPTIONAL CONFIGURATION
# ============================================

# Webhook Configuration (Optional - for production)
WEBHOOK_URL=https://your-domain.com/webhook
PORT=5000

# OpenAI API Key (Optional - for advanced AI features)
# Get your API key from https://platform.openai.com/api-keys
OPENAI_API_KEY=

# OpenWeatherMap API Key (Optional - for real weather data)
# Get your API key from https://openweathermap.org/api
OPENWEATHER_API_KEY=

# ============================================
# INSTRUCTIONS
# ============================================
# 1. Replace YOUR_BOT_TOKEN_HERE with your actual bot token
# 2. Replace 123456789 with your actual Telegram user ID
# 3. Optionally add API keys for enhanced features
# 4. Save this file (it is already named .env)
# 5. Never commit this file to version control
