""" Development Server ================== This server is for development purposes only. It turns on the necessary flags to allow quick reloads (no need to restart the server after making changes), and debug flags. It also provides a development server which launches the application (not suitable for production). """ from application import app app.debug = True if __name__ == '__main__': app.run()