diff --git a/App.py b/App.py new file mode 100644 index 000000000..626ac9b30 --- /dev/null +++ b/App.py @@ -0,0 +1,10 @@ +from flask import Flask +app = Flask(__name__) + +@app.route('/') +def hello_world(): +return 'GreyMatters' + + +if __name__ == "__main__": +app.run() diff --git a/requirements.txt b/requirements.txt index 406231484..80f4fcf9d 100644 --- a/requirements.txt +++ b/requirements.txt @@ -3,3 +3,6 @@ python-decouple pyrogram telethon tgcrypto +Flask==2.2.2 +gunicorn==20.1.0 +aiohttp 3.8.1 diff --git a/run cmd.txt b/run cmd.txt new file mode 100644 index 000000000..c958a55a8 --- /dev/null +++ b/run cmd.txt @@ -0,0 +1 @@ +gunicorn app:app & python3 main