Skip to content

Commit

Permalink
Updated README
Browse files Browse the repository at this point in the history
  • Loading branch information
Francesco Cosentino committed Dec 18, 2023
1 parent 9dcaa56 commit f0940cc
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ A `Python` bridge to forward messages from any Telegram **channel** to your **Di
- **It supports OpenAI's API to generate suggestions and sentiment analyses based on the text you're forwarding.**
- It can run as a daemon and handle any shutdown gracefully, including `SIGTERM` and `SIGINT` signals. It will also save the state of the bridge, so you can resume from where you left off
- You can enable logging to the file system, which will handle the rotation for you.
- You can enable the management API to control the bridge remotely, including the ability to log in to Telegram via MFA.
- You can enable the anti-spam feature to prevent the bridge from forwarding the same message multiple times.

## Installation

Expand Down Expand Up @@ -50,6 +52,8 @@ application:
healthcheck_interval: 10
# The time in seconds to wait before forwarding each missed message
recoverer_delay: 60
# Enable the anti-spam feature
anti_spam_enabled: True

# Management API configuration
api:
Expand All @@ -71,7 +75,8 @@ logger:
# format: "%(asctime)s - %(name)s - %(levelname)s - %(message)s"
format: "%(asctime)s %(levelprefix)s %(message)s"
date_format: "%Y-%m-%d %H:%M:%S"
console: False # set to true to enable console logging and disable file based logging
# Whether to log to console or not
console: True # set to true to enable console logging and disable file based logging

# Telegram configuration
telegram:
Expand Down

0 comments on commit f0940cc

Please sign in to comment.