Files
quiz_test/.env.example
Andrey K. Choi b0346e4bd7
Some checks reported errors
continuous-integration/drone/push Build encountered an error
cleaning root
2025-09-11 08:18:31 +09:00

31 lines
707 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Токен бота Telegram (получить у @BotFather)
BOT_TOKEN=your_bot_token_here
# ID администраторов (через запятую)
ADMIN_IDS=123456789,987654321
# Путь к базе данных
DATABASE_PATH=data/quiz_bot.db
# Путь к CSV файлам с тестами
CSV_DATA_PATH=data/
# Настройки викторины
QUESTIONS_PER_QUIZ=10
TIME_PER_QUESTION=30
# Режимы работы
GUEST_MODE_ENABLED=true
TEST_MODE_ENABLED=true
# Production environment variables
LOG_LEVEL=INFO
# Production specific settings
PYTHONUNBUFFERED=1
TZ=UTC
# Optional: Monitoring and alerting
SENTRY_DSN=your_sentry_dsn_here
WEBHOOK_URL=your_notification_webhook_url