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