TranscriptApi / app.py
Th3BossC's picture
proper commit
b8b87ed
raw
history blame
309 Bytes
from TranscriptApi import create_app
from threading import Thread
app = create_app()
if __name__ == '__main__':
app.run(debug=True,host="0.0.0.0",port=5000)
# def run():
# app.run(host = "0.0.0.0", port = 8080)
# def keep_alive():
# t = Thread(target = run)
# t.start()
# keep_alive()