Skip to content

Commit

Permalink
Small fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
modos189 committed Dec 20, 2022
1 parent c08cefe commit 6d23ac9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion app/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
app = Flask(__name__)
LISTENER_HOST = os.environ.get('HOST', '0.0.0.0')
LISTENER_PORT = os.environ.get('PORT', '4567')
WEBHOOK_SECRET = os.environ['SECRET']
WEBHOOK_SECRET = os.environ['WEBHOOK_SECRET']
TELEGRAM_TOKEN = os.environ['TELEGRAM_TOKEN']
TELEGRAM_CHAT_ID = os.environ['TELEGRAM_CHAT_ID']
TELEGRAM_TOPIC_ID = os.environ.get('TELEGRAM_TOPIC_ID', None)
Expand Down
4 changes: 2 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version: '3.8'
version: '3.3'

services:
app:
Expand All @@ -13,4 +13,4 @@ services:
- WEBHOOK_SECRET=secret
- TELEGRAM_TOKEN=123456789:blablabla
- TELEGRAM_CHAT_ID=-1001234567890
- TELEGRAM_TOPIC_ID=1234567890 # Optional
# - TELEGRAM_TOPIC_ID=1234567890 # Optional

0 comments on commit 6d23ac9

Please sign in to comment.