Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Procfile
Original file line number Diff line number Diff line change
@@ -1 +1 @@
web: python app.py
web: gunicorn app:app
4 changes: 4 additions & 0 deletions gunicorn.log
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
[2025-11-15 00:54:01 +0000] [2242] [INFO] Starting gunicorn 23.0.0
[2025-11-15 00:54:01 +0000] [2242] [INFO] Listening at: http://127.0.0.1:8000 (2242)
[2025-11-15 00:54:01 +0000] [2242] [INFO] Using worker: sync
[2025-11-15 00:54:01 +0000] [2376] [INFO] Booting worker with pid: 2376
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@ flask
requests
feedparser
python-telegram-bot
gunicorn
13 changes: 0 additions & 13 deletions static/index.html

This file was deleted.

14 changes: 14 additions & 0 deletions vercel.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"builds": [
{
"src": "app.py",
"use": "@vercel/python"
}
],
"routes": [
{
"src": "/(.*)",
"dest": "app.py"
}
]
}
Loading