-
Clone the repository:
git clone https://github.com/yourusername/daily_reminder_bot.git cd daily_reminder_bot
-
Create a virtual environment:
python3 -m venv venv source venv/bin/activate
-
Install dependencies:
pip install -r requirements.txt
-
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>"
-
Run the bot:
python main.py
-
Deactivate the virtual environment (optional):
deactivate