20 lines
606 B
Python
20 lines
606 B
Python
# Telegram bot token
|
|
TOKEN: str = '...'
|
|
|
|
# Full url to bot
|
|
TELEGRAM_URL: str = 'https://t.me/your_cool_bot'
|
|
|
|
# Telegram proxy url (None for no proxy)
|
|
TELEGRAM_PROXY: str | None = None
|
|
|
|
# Base URL for the map (should be runned separately)
|
|
WEB_BASE_URL: str = 'https://zatups.example.com'
|
|
|
|
# Base URL for the schedule (should be runned separately)
|
|
SCHEDULE_BASE_URL: str = 'http://10.9.8.3:18822'
|
|
|
|
# The map navigator is mocked until the compiled points/graph are supplied.
|
|
# Route requests are still validated and delivered back to the bot.
|
|
|
|
# Telegram user IDs
|
|
ADMINS: list[int] = [5016590523, 5001115363]
|