diff --git a/app/app.py b/app/app.py index 71fb22c..2198ea1 100644 --- a/app/app.py +++ b/app/app.py @@ -439,9 +439,6 @@ def start_vscode(id): return render_template("vscode.html") -@app.route( - "/vscode_proxy/", methods=["GET", "POST", "PUT", "DELETE", "PATCH"] -) @app.route( "/vscode_proxy/", methods=["GET", "POST", "PUT", "DELETE", "PATCH"] ) @@ -449,6 +446,19 @@ def vscode_proxy(path): """ This route acts as a proxy for the VS Code server, forwarding requests and responses. """ + + return """ + + + + + Debug Page + + +

You're here

+ +""" + print(f"VSCode Proxy called with path: {path}") user_info = session.get("user")