Update app.py
Browse files
app.py
CHANGED
@@ -92,4 +92,4 @@ def handle_request():
|
|
92 |
return jsonify({"error": f"Internal Server Error: {str(e)}"}), 500
|
93 |
|
94 |
if __name__ == '__main__':
|
95 |
-
app.run(host='0.0.0.0', port=8000)
|
|
|
92 |
return jsonify({"error": f"Internal Server Error: {str(e)}"}), 500
|
93 |
|
94 |
if __name__ == '__main__':
|
95 |
+
app.run(host='0.0.0.0', port=8000, debug=True)
|