예제 #1
0
def runnodebug():
    from os import environ as env
    app.run(host='0.0.0.0', port=int(env.get('PORT', '5000')))
예제 #2
0
파일: manage.py 프로젝트: uniphil/qgic-2013
def runnodebug():
    from os import environ as env
    app.run(host='0.0.0.0', port=int(env.get('PORT', '5000')))
예제 #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')))
예제 #4
0
파일: manage.py 프로젝트: uniphil/qgic-2013
def runserver():
    from os import environ as env
    app.run(debug=True, host='0.0.0.0', port=int(env.get('PORT', '5000')))