Example #1
0
#!flask/bin/python3
from test_app import app
app.run(debug=True)
Example #2
0
from test_app import app

if __name__ == "__main__":
    app.run()
Example #3
0
from test_app import app

if __name__ == '__main__':
    app.run(host='0.0.0.0')
from test_app import app
app.run(debug=True)
from test_app import app

if __name__ == '__main__':
	app.run(host="0.0.0.0", port=4000)
Example #6
0
from test_app import app as application

if __name__ == "__main__":
    application.run()