You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

5 lines
149 B

import os
from bot_app import app
port = os.environ.get('FLASK_EXPOSE_PORT')
port = port if port != None else 8080
app.run(host='0.0.0.0', port=port)