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.

4 lines
149 B

5 years ago
5 years ago
  1. import os
  2. from bot_app import app
  3. port = os.environ.get('FLASK_EXPOSE_PORT')
  4. port = port if port != None else 8080
  5. app.run(host='0.0.0.0', port=port)