Example #1
0
def runnodebug():
    from os import environ as env
    app.run(host='0.0.0.0', port=int(env.get('PORT', '5000')))
Example #2
0
def runnodebug():
    from os import environ as env
    app.run(host='0.0.0.0', port=int(env.get('PORT', '5000')))
Example #3
0
def runserver():
    from os import environ as env
    app.run(debug=True, host='0.0.0.0', port=int(env.get('PORT', '5000')))
Example #4
0
def runserver():
    from os import environ as env
    app.run(debug=True, host='0.0.0.0', port=int(env.get('PORT', '5000')))