Skip to content

lravenclaw/daily_reminder_bot

Repository files navigation

Daily Reminder Bot

Usage:

  1. Clone the repository:

    git clone https://github.com/yourusername/daily_reminder_bot.git
    cd daily_reminder_bot
  2. Create a virtual environment:

    python3 -m venv venv
    source venv/bin/activate
  3. Install dependencies:

    pip install -r requirements.txt
  4. Create a .env file in the root directory and add the following:

    cp .env.example .env
    

    Replace <your_bot_token> with the token you get from BotFather when you create a new bot.

    BOT_TOKEN="<your_bot_token>"
    ADMIN_ID="<your_admin_id>"
  5. Run the bot:

    python main.py
  6. Deactivate the virtual environment (optional):

    deactivate

Ready for Heroku deployment!