Skip to content

Latest commit

 

History

History
48 lines (35 loc) · 1.44 KB

README.md

File metadata and controls

48 lines (35 loc) · 1.44 KB

Run tracker

Python SQLite Docker Ansible GitHub Actions Telegram Bot API

This is a telegram bot for storing running activities and tracking your progress.

Example

Usage

  • open the bot at this link
  • follow the bot instructions

Deployment

Local

  • Clone the repository
  • Run pip install -r requirements.txt
  • Create .env file in the root repo directory with the following string: BOT_TOKEN = <YOUR_TOKEN>
  • Run python -m bot.py

Docker

Using Hub image

docker pull nidetag/run-tracker
docker run --name run-tracker -d -e TOKEN=<YOUR_TOKEN> nidetag/run-tracker

Building image

docker build -t run-tracker .
docker run --name run-tracker -d -e TOKEN=<YOUR_TOKEN> run-tracker