tg_rss_bot/README.md
Miroslavsckaya 92ced4c91b
All checks were successful
continuous-integration/drone/push Build is passing
Fix representation date in FeedItem (#38)
Reviewed-on: #38
Reviewed-by: Alexey Skobkin <skobkin-ru@ya.ru>
2022-07-10 17:40:19 +03:00

1.1 KiB

Telegram RSS Bot

Build Status

Setting up virtual environment

To be able to isolate project environment we'll use Python's venv.

Setting up new environment and installing dependencies

# Create VirtualEnv directory
python -m venv ./.venv
# Loading environment
source .venv/bin/activate
# Installing dependencies
pip install -r requirements.txt

Adding dependencies

# Installing new dependency
pip install somedependency
# Rewriting dependency file
pip freeze > requirements.txt

Do not forget to install the latest dependencies before adding new dependencies and rewriting the requirements.txt file. Otherwise old dependencies could be lost.

Running the bot

export TELEGRAM_TOKEN=xxx
export DATABASE_PATH=./database.db
python bot.py

Running the update

export TELEGRAM_TOKEN=xxx
export DATABASE_PATH=./database.db
python update.py