This is an unofficial Telegram-bot for V.N. Karazin University which aggregates several useful news sources for students of the Uni. The main idea behind to get news from RSS-feeds and publish updates to a certain telegram channel where students could read it in a comfortable way from their mobile devices.
The bot has been written in Python 3.8 and deployed into Heroku Cloud with Travis CI.
If you are interested in contributing to the project you are very welcome! In this section, you can find commands which help you to set up the project on your local machine.
# step 0: Clone the repo
$ gh repo clone maxkrivich/KarazinNews-telegram-bot
$ cd KarazinNews-telegram-bot
# step 1: Setup virtualenv for the project
$ virtualenv --python=python3.8 .venv
$ source .venv/bin/activate
$ pip install -r requirements-dev.txt
$ pre-commit install
# step 2: Specify environment variables
$ cp .env.example .env
$ vim .env
# step 3: DB setup
$ docker-compose -f docker-compose.dev.yaml up -d
# step 4: Launch script
$ python run.py
How to setup heroku api-key for .travis.yml
using ruby travis gem.
$ brew install heroku/brew/heroku
$ heroku login
$ gem install travis
$ travis encrypt $(heroku auth:token) --add deploy.api_key
How to setup database auto-backups.
# Schedule auto-backups
$ heroku pg:backups:schedule DATABASE_URL --at '02:00 Europe/Kiev' --app <app-name>
# List of backups
$ heroku pg:backups:schedules --app <app-name>
$ heroku pg:backups --app <app-name>
$ heroku pg:backups:info <backup-name> --app <app-name>
# Unschedule auto-backups
$ heroku pg:backups:unschedule DATABASE_URL --app <app-name>
If you find bugs or have suggestions about improving the module, don't hesitate to contact me.
This project is licensed under the terms of the MIT license - see the LICENSE file for details
click here
https://www.terraform.io/docs/cloud/index.html
https://docs.travis-ci.com/user/deployment/heroku/
https://devcenter.heroku.com/articles/getting-started-with-python
https://docs.docker.com/compose/compose-file/
https://devcenter.heroku.com/articles/heroku-postgres-backups
Copyright (c) 2017-2020 - Maxim Krivich