Ejemplo n.º 1
0
def runnodebug():
    from os import environ as env
    app.run(host='0.0.0.0', port=int(env.get('PORT', '5000')))
Ejemplo n.º 2
0
def runnodebug():
    from os import environ as env
    app.run(host='0.0.0.0', port=int(env.get('PORT', '5000')))
Ejemplo n.º 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')))
Ejemplo n.º 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')))