This repository has been archived on 2025-09-07. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
MouseyBot/example.env

23 lines
557 B
Bash

# Telegram
# FIXME: Укажите ваше значение.
BOT_TOKEN = "token"
# Redis
REDIS_HOST = "redis"
REDIS_PORT = 6379
# PostgreSQL
POSTGRES_HOST = "postgres"
POSTGRES_PORT = 5432
POSTGRES_USER = "MouseyBot"
# FIXME: Укажите ваше значение.
POSTGRES_PASSWORD = "ultra-password"
POSTGRES_DB = "mousey_bot"
# Sqlalchemy
DB_URL = "postgresql+asyncpg://${POSTGRES_USER}:${POSTGRES_PASSWORD}@${POSTGRES_HOST}:${POSTGRES_PORT}/${POSTGRES_DB}"
# FIXME: Укажите ваше значение.
MAIN_ADMIN_ID = "your-telegram-id"