diff --git a/project/app.py b/project/app.py index 38b593a..b670fec 100644 --- a/project/app.py +++ b/project/app.py @@ -61,4 +61,7 @@ def index(): @app.errorhandler(Exception) def handle_exception(e): print(f"Unhandled exception: {e}") - return jsonify({"error": "Internal Server Error"}), \ No newline at end of file + return jsonify({"error": "Internal Server Error"}), + +if __name__ == "__main__": + app.run(debug=True, host="0.0.0.0", port=3000)