예제 #1
0
def run_public():
    app.run(host="0.0.0.0", debug=True)
예제 #2
0
def run_hand():
    print "App static folder: ", app.static_folder
    app.run()
예제 #3
0
def run_ssl():
    app.run(host="0.0.0.0", debug=True, ssl_context=app.config['SSL_CONTEXT'])
예제 #4
0
def run_debug():
    app.config.from_object(TestConfig)
    create_db()
    app.run(debug=True)
예제 #5
0
def run_public():
    app.run(host="0.0.0.0", debug=True)
예제 #6
0
def run_ssl():
    app.run(host="0.0.0.0", debug=True, ssl_context=app.config['SSL_CONTEXT'])
예제 #7
0
def run_hand():
    print "App static folder: ", app.static_folder
    app.run()