Files
shveitechbot/config.py

20 lines
356 B
Python

import os
import logging
from dotenv import load_dotenv
load_dotenv(override=True)
logger = logging.getLogger(__name__)
### Environment Variables ###
BOT_TOKEN = os.getenv("BOT_TOKEN", "")
POSTGRES_URL = os.getenv(
"POSTGRES_URL",
"postgresql+asyncpg://postgres:HEXDEVFUCKINGSUCKS!@localhost:5432/postgres",
)
### Constants ###
PAGE_SIZE = 4