""" Development server. This server is intended for development only: it enables debugging tools, and use a different port so it can more easily interface with other applications. """ from application import app if __name__ == '__main__': app.run(debug=True)